+ 3
Properties
What is the difference between font style properties and font family properties?
3 Antworten
+ 6
No, but you can use them together like this:
p.text {
font-family: Georgia;
font-style: italic;
}
+ 7
font-family is the name of the font you want to use (e.g. cursive, Monospace, Georgia, Arial. etc.). https://www.sololearn.com/learn/CSS/1084/
font-style is the style of the text. Possible values are: normal, italic, and oblique. https://www.sololearn.com/learn/CSS/1086
+ 2
can you put a font-style tag(dont know if that the right vocab) inside a font-family tag