我正在尝试学习新的 CSS3 选择器,因此尝试了以下代码:
<body class="frontpage">
<section name="top">
<header class="head" name="top">
<div id="my-name">
<h1 id="title">
Josh Dempsey
</h1>
</div>
</header>
</section>
</body>
使用 CSS:
body[class*="f"]>section[name$="op"]>header[class|top]>div[id*="my"]>h1[id=title]{color:white;}
我希望我的名字印成白色,而不是黑色/自动。
我的其他 CSS 以防任何人从中找到任何东西:
body[class*="fro"]{background-color:#f8efe1;height:auto;width:auto;direction:ltr;z- index:1;}
section[name*="t"]{position:absolute;top:0px;left:0px;width:100%;height:100px;}
header[class$="ad"]{background-color:#272727;height:100%;width:100%;}
h1[class="title-of-site"]{color:white;font-family:'Open Sans',sans-serif;font- weight:300;margin:0}
header[class$="op"]>div[name*=image_holder] {position:absolute;top:5px;left:10%;bottom:5px;height:40px;width:40px;background-color:
transparent;}
我在 W3.org 上检查了所有这些并成功验证了它。所以我被这个难住了。谢谢。