int
我如何只抓取第一个p标签内的文字(“到这个网站”)? 我不能给它一个类或ID,因为它是用wordpress中的视觉作曲家完成的,我也不能在wordpress中设置它,但我只需要设计那个部分。
答案 0 :(得分:1)
也许是这样的?
http://codepen.io/anon/pen/YGpvxE
摘录以下示例
p:first-child {
color: red !important; /** Use important only in very rare situations **/
}
p b {
color: initial;
}
<div>
<p>
<b>Hello there, welcome</b>
<br/>
To this website
</p>
<p>Some other text</p>
</div>
修改强>
要覆盖内联样式,您可以在css中使用!important
。