虽然这种语法不呈现,但这基本上就是我试图做的。
#description > p:first-line[title*='bandCopy'] {font-weight:bold;}
我希望第一个主体副本具有第一行粗体。
我正在使用此页面:
http://www.glustik.com/dustreeproductions/entertainers/smiths.php
我正在尝试使用一些CSS3来练习。
感谢一堆!
答案 0 :(得分:3)
这应该适合你:
#description>p[title*=bandCopy]:first-line {font-weight:bold;}