Font size and font style at the same time | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Font size and font style at the same time

How do i use font-size and font-style at the same time? The html part: <p class="large" class="italic"> apple</p> The CSS part: p.large{ font-size: large; } p.italic{ font-style: italic; }

25th Oct 2016, 4:21 PM
Alan Chan
Alan Chan - avatar
2 Answers
+ 6
class="large italic"
25th Oct 2016, 4:33 PM
Zen
Zen - avatar
0
Thank you! I got it work!
25th Oct 2016, 4:39 PM
Alan Chan
Alan Chan - avatar