CSS:在网站上定位大胆的内容

时间:2017-12-01 10:17:08

标签: javascript html css

我希望在页面上以css/html/javascript/php所有粗体文字为目标。

我已经尝试过这种方式,但b标记仅定位粗体标记括号内的内容(这是完全正确的)。

有没有办法在页面上加粗字体粗体的所有粗体文字?



.make_me_bold 
{
   font-weight: bold;
}

b
{
   text-decoration: underline;
}

<span class="make_me_bold"> Bold span text </span> <br/><br/>
<b> Bold b tag text </b>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:-1)

您可以使用jQuery在所有元素上测试该属性,如下所示:

$('*').each(function(){
if($(this).css('fontWeight')>600)
  $(this).css('textDecoration','underline');
})
.make_me_bold {
  font-weight: bold;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<span class="make_me_bold"> Bold span text </span> <br/><br/>
<b> Bold b tag text </b>

您可以阅读here

  

400与正常相同,700与粗体相同