0
What is the difference between Font-family and font-style ?
2 Answers
+ 3
Kitty
Font-family is the property in which specific size and style of type is present and has a unique âfallbackâ property i.e. if the browser does not support the first one, it goes for next one and so on. Eg:
font-family: âTimes New Romanâ, Times , Serif;
font-style is used to display specify style to text.
Eg:
font-style: italic;
It can italic, bold underline, oblique.
+ 1
Thank you !