标签: css css-selectors
我无法应用此规则:
h1#header_i { color:red; }
这有效:
h1 { color:red; }
#header_i { color:red; }
我正在尝试仅将规则应用于<h1> div中的id="header_i"标记。
<h1>
id="header_i"
由于
答案 0 :(得分:3)
您正在寻找the descendant selector:
#header_i h1 { color: red; }
http://cssdesk.com/hCxEv