如何将em标签重新设置为粗体而不是斜体
问题描述:
我想将< em>
标签内的文字加粗而不是斜体。有没有一种方法可以实现这个CSS?
I want to make the text within an <em>
tag bold instead of italic. Is there a way to achieve this with CSS?
答
当然,使用下面的CSS代码:
Sure, use following CSS code:
em {
font-weight: bold;
font-style: normal;
}