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.
我正在为我的一些页面使用以下四四方方的插件。BOXY 插件
我想为每个页面设置不同样式的方形弹出框的外框。问题是我注意到 boxy.js 文件中的硬编码 html 和 css 类。有人可以帮助我并指出正确的方向吗?我想使用相同的方形插件在每个页面上使用不同的样式。
谢谢
在以下情况下,您可以轻松覆盖 CSS 属性:
img.myClass
.myClass
!important
尽管该!important功能经常被误用,导致许多开发人员不喜欢它,但如果使用正确,它实际上非常有用。例如,当您想覆盖第 3 方 CSS 时;)
.myClass { color: red; } .myClass { color: blue !important; /* overwrites the red color */ }