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.
如何使用 CSS 选择 likebtn 容器?
我尝试了几种组合,例如“#meta #likebtn{}”或“#likebtn{}”,但都不起作用。为什么这行得通?
首先,尽可能直接地定位它:
#likebtn { /* desired style changes here */ }
然后打开您的开发者工具并检查样式检查器;如果您的 CSS 规则在某处被覆盖,它会告诉您使用哪个选择器覆盖它。
例如,这可能会覆盖您的规则:
#meta #likebtn
下一步是: