Good afternoon, I want my String to be formatted as Bold and Italic . In my css file it looks like this:
font-style: italic bold;
It does not work. I've tried it in many ways and I can not. Can anyone help me please?
Good afternoon, I want my String to be formatted as Bold and Italic . In my css file it looks like this:
font-style: italic bold;
It does not work. I've tried it in many ways and I can not. Can anyone help me please?
Use only font
and not font-style and add the size and font to be used.
Example:
font: italic bold 15px Georgia;
You can see it working here