自定义ID元素+自定义CSS

时间:2014-11-10 12:52:00

标签: css

好的,所以我编辑了以下内容......

<div id="rt-utility"><div class="rt-block fp-roksprocket-grids-utility title5 jmoddiv">

只需将以下内容放入我的custom.css

即可
#rt-utility .rt-block {CODE HERE}

但是当我试图改变......

<div id="rt-sideslider-overlay"><header id="rt-header-surround">

#rt-sideslider-overlay .header-rt-header-surround {CODE HERE}

它不起作用......这是否与它的标题ID而不是div id有关?

2 个答案:

答案 0 :(得分:3)

只需使用:

#rt-header-surround {}

答案 1 :(得分:1)

有点错误:

替换

#rt-sideslider-overlay .header-rt-header-surround {CODE HERE}

#rt-sideslider-overlay header#rt-header-surround {CODE HERE}

因为标签名称选择器只是

header

在css选择器中阅读更多内容: http://www.w3.org/TR/CSS21/selector.html