Thuộc tính font-variant trong CSS là cách viết tắt của các thuộc tính sau:font-variant-caps, font-variant-numeric, font-variant-Alternates, font-variant-ligatures và font-variant-west-Asian. Nó có giá trị sau -
font-variant: normal|small-caps|initial|inherit;
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ để triển khai thuộc tính font-variant -
<!DOCTYPE html> <html> <head> <style> body { background-image: linear-gradient(to right, yellow,orange,yellow,green,blue,indigo,violet); } .demo { text-decoration: overline; text-decoration-color: yellow; font-variant:normal; } </style> </head> <body> <h1>Examination Details</h1> <p class="demo">Exam on 20th December.</p> <p class="demo2">Exam begins at 9AM.</p> </body> </html>
Đầu ra
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ khác -
<!DOCTYPE html> <html> <head> <style> .demo { text-decoration: overline underline; text-decoration-color: blue; font-variant: small-caps; } </style> </head> <body> <h1>Details</h1> <p class="demo">Examination Center near ABC College.</p> <p class="demo2">Exam begins at 9AM.</p> </body> </html>
Đầu ra