上下文id选择器css

时间:2013-01-16 20:15:18

标签: css css-selectors

我无法应用此规则:

h1#header_i { color:red; }

这有效:

h1 { color:red; }

这有效:

#header_i { color:red; }

我正在尝试仅将规则应用于<h1> div中的id="header_i"标记。

由于

1 个答案:

答案 0 :(得分:3)

您正在寻找the descendant selector

#header_i h1 {
    color: red;
}

http://cssdesk.com/hCxEv