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.
我在不应用此规则时遇到问题:
h1#header_i { color:red; }
这有效:
h1 { color:red; }
#header_i { color:red; }
我试图仅将规则应用于div中的<h1>标签。id="header_i"
<h1>
id="header_i"
谢谢
您正在寻找后代选择器:
#header_i h1 { color: red; }
http://cssdesk.com/hCxEv