Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to restyle em tag to be bold instead of italic

Tags:

html

css

I want to make the text within an <em> tag bold instead of italic. Is there a way to achieve this with CSS?

like image 321
user3861559 Avatar asked Jan 19 '26 14:01

user3861559


1 Answers

Sure, use following CSS code:

em {
   font-weight: bold;
   font-style: normal;
}
like image 84
Kamil Avatar answered Jan 21 '26 04:01

Kamil