在CSS中,如果要對任何類型的文本進行設計,則可以使用CSS字體樣式屬性。它有助於改善用戶體驗。
用法:
font-style:normal|italic|oblique|initial|inherit;
屬性值:
-
font-style:正常:瀏覽器將顯示普通字體文本,這是默認值。
用法:
font-style:normal;
例:
<!DOCTYPE html> <html> <head> <title> CSS | font-style Property </title> <style> p.a { font-style:normal; } </style> </head> <body> <h1>Normal font-style Property</h1> <p class="a">GeeksforGeeks</p> </body> </html>
輸出
- font-style:斜體:這是用於斜體的形式
用法:
font-style:italic;
例:
<!DOCTYPE html> <html> <head> <title> CSS | font-style Property </title> <style> p.a { font-style:italic; } </style> </head> <body> <h1>Italic font-style Property</h1> <p class="a">GeeksforGeeks</p> </body> </html>
輸出
-
font-style:傾斜:瀏覽器顯示傾斜字體樣式
用法:
font-style:oblique;
例:
<!DOCTYPE html> <html> <head> <title> CSS | font-style Property </title> <style> p.a { font-style:oblique; } </style> </head> <body> <h1>Oblique font-style Property</h1> <p class="a">GeeksforGeeks</p> </body> </html>
輸出
-
font-style:初始值:瀏覽器顯示默認的初始字體樣式。
用法:
font-style:initial;
例:
<!DOCTYPE html> <html> <head> <title> CSS | font-style Property </title> <style> p.a { font-style:initial; } </style> </head> <body> <h1>Initial font-style Property</h1> <p class="a">GeeksforGeeks</p> </body> </html>
輸出
-
font-style:繼承:繼承自其父元素的屬性。
例:
<!-- Write HTML code here --> <!DOCTYPE html> <html> <head> <title> CSS | font-style Property </title> <style> span { color:blue; font-size:70px; } .extra span { color:inherit; } </style> </head> <body> <div> <span>GeeksforGeeks</span> </div> <div class="extra" style="color:green"> <span>GeeksforGeeks</span> </div> <div style="color:red"> <span>GeeksforGeeks</span> </div> </body> </html>
輸出
支持的瀏覽器:下麵列出了font-style屬性支持的瀏覽器:
- 穀歌瀏覽器1.0
- Internet Explorer 4.0
- Firefox 1.0
- Opera 7.0
- Safari 1.0
相關用法
- HTML Style fontStyle用法及代碼示例
- CSS transition-property用法及代碼示例
- CSS nav-right用法及代碼示例
- CSS right屬性用法及代碼示例
- CSS nav-up用法及代碼示例
- CSS nav-down用法及代碼示例
- CSS all屬性用法及代碼示例
- CSS top屬性用法及代碼示例
- CSS clear屬性用法及代碼示例
- CSS quotes屬性用法及代碼示例
- CSS transform屬性用法及代碼示例
- CSS resize屬性用法及代碼示例
- CSS align-self用法及代碼示例
- CSS height屬性用法及代碼示例
- CSS overflow-x用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 CSS | font-style Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。