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.
如何为以下内容添加特异性:
input[type="text"] { color:red }
我想要类似的东西:
#my_id input[type="text"] { color:red }
你的意思是这样吗?
input[type="text"]#my_id { color:red }
查看演示
当您使用 id并且不想处理子节点时,您可以省略任何其他部分,id 必须是唯一的,因此您可以只使用:
#my_id { color:red }