Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当我将鼠标悬停在它们上方时,我都会让所有图像向左移动一点。但我想排除我设置的具有特定 ID 或类的图像。我怎么做?
我的悬停代码:
a:hover { margin-left: 6px; }
.myclass:hover { margin-left: 0px; }
查看:not()选择器https://developer.mozilla.org/en/docs/CSS/:not
:not()