有没有办法从标题的一部分删除粗体样式?
<h1>**This text should be bold**, but this text should not</h1>
有没有办法做到这一点?
您可以将非粗体文本包装成一个跨度,并为该跨度提供以下属性:
.notbold{
font-weight:normal
}
和
<h1>**This text should be bold**, <span class='notbold'>but this text should not</span></h1>
See:http://jsfiddle.net/MRcpa/1/
如果要更改元素的样式而不将其放置在文档中的新块级元素中,请使用<span>
。
如果你不想要一个单独的 CSS 文件,你可以使用内联 CSS:
<h1>This text should be bold, <span style="font-weight:normal">but this text should not</span></h1>
但是,正如 Madara 的评论所暗示的那样,您可能希望考虑将未加粗的部分放在不同的标题中,具体取决于所涉及的用例。
是的,您可以在<span>
中添加文本并覆盖 css。jsfiddle
html格式:
<h1>**This text should be bold**, <span>but this text should not</span><h1>
css:
span{
font-weight: normal;
}
<h1 style="font-weight: normal;"></h1>
试试这个?
本站系公益性非盈利分享网址,本文来自用户投稿,不代表码文网立场,如若转载,请注明出处
评论列表(60条)