Angular
font-style css
font style ใน css มีได้ 3 ค่าคือ "normal", "italic", and "oblique"
ตัวอย่าง
p { font-style: italic; }
span { font-style: oblique; }
div { font-style: normal; }
หรือเราสามารถใช้แบบสั้น ๆ ได้ ตัวอย่าง
p{ font: italic bold 12px/30px Arial, sans-serif; }