css font style

Solutions on MaxInterview for css font style by the best coders in the world

showing results for - "css font style"
Krish
22 Nov 2016
1#example {
2	font-style: normal; /* no specification, default */
3  	font-style: italic; /* font is italic */
4    font-style: oblique; /* font is italic, even if italic letters are not specified for font family */
5    font-style: inherit; /* inherit property from parent */
6	font-style: initial; /* default value */
7}
Raphael
08 May 2018
1.example {
2  font-style: italic;
3}