如何使用 CSS 将第二行设置为粗体
我有一个包含一些内容的 div。我尝试使用此CSS在下一行中制作内容,但是如何使第二行变为粗体?
.description {
white-space: pre-line !important;
}
<div class="description">
Head of Department
Department: XYZ ABCD
[email protected]
</div>
I have a div which has some contents. I tried this CSS to make content in next line, but how can make second line bold ?
.description {
white-space: pre-line !important;
}
<div class="description">
Head of Department
Department: XYZ ABCD
[email protected]
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用纯
CSS
来做到这一点。但是这个任务可以通过一些Js
作品来完成。删除这个样式:
然后添加这个
CSS
样式:然后你可以编写这个
Js
代码:考虑这两件事:
首先,制作这个
Js
部分在Html
元素呈现后运行。其次,在
theBoldLinesIndex
中插入要加粗的行索引,其中在你的情况下,是第二行(索引= 1).You can not do that with pure
CSS
. But this task can be done by someJs
works.Remove this style:
and next add this
CSS
style:and then you can write this
Js
code :Consider these two things:
First, make this
Js
part run after theHtml
elements have been rendered.Second, in
theBoldLinesIndex
insert the lines index you want to be bold, which in your case, is second line (index = 1).