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; }
2 Respuestas
+ 6
class="large italic"
0
Thank you! I got it work!