+ 1
Imagine if I want to make, for example, a certain text (bold) and (italic) at the same time, how do I do it?
3 Respuestas
+ 3
It can be combine together
font-weight: bold;
font-style: italic;
+ 3
Or you just do <b><i>this</i></b>.
0
Thank you