CSS中的all屬性是一種簡寫屬性,用於將所有元素的值設置為其初始值或繼承的值,或者在某些情況下,用於將這些值設置為另一個電子表格的來源。此屬性用於重置文檔中的所有CSS屬性。
用法:
all:initial|inherit|unset|revert;
屬性值:
initial:此屬性用於將所有屬性設置為其默認值。
- 用法:
all:initial;
- 例:
<!DOCTYPE html> <html> <head> <title> CSS all aroperty </title> <!-- CSS all property --> <style> h1, h3 { background-color:yellow; color:green; all:initial; } body { text-align:center; all:initial; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h3>all property</h3> </body> </html>
- 輸出:
GeeksforGeeks all property
- 用法:
all:inherit;
- 例:
<!DOCTYPE html> <html> <head> <title>All Property</title> <style> div { text-align:center; color:green; all:initial } h1, h3 { all:inherit; } </style> </head> <body> <div> <h1>GeeksforGeeks</h1> <h3>all property</h3> </div> </body> </html>
- 輸出:
GeeksforGeeks all property
- 用法:
all:unset;
- 例:
<!DOCTYPE html> <html> <head> <title> CSS all property </title> <style> h1, h3 { background-color:green; color:white; all:unset; } body { text-align:center; all:unset; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h3>all property</h3> </body> </html>
- 輸出:
GeeksforGeeks all property
- 用法:
all:revert;
- 例:
<!DOCTYPE html> <html> <head> <title> CSS all property </title> <style> h1, h3 { background-color:yellow; color:green; all:revert; } body { text-align:center; all:revert; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h3>all Property</h3> </body> </html>
- 輸出:
- 鍍 chrome 37.0
- Firefox 27.0
- Opera 24.0
- Safari 9.1
繼承:此屬性用於設置其父元素的all屬性。
unset:此屬性用於指定所有元素屬性(如果默認繼承)應更改為它們的繼承值,否則為初始值。
revert:用於指定取決於聲明所屬樣式表來源的行為。
支持的瀏覽器:下麵列出了所有屬性支持的瀏覽器:
相關用法
- CSS transition-property用法及代碼示例
- CSS table-layout用法及代碼示例
- CSS text-align用法及代碼示例
- CSS border-top-width用法及代碼示例
- CSS isolation屬性用法及代碼示例
- CSS border-inline-start-style屬性用法及代碼示例
- CSS column-rule-width用法及代碼示例
- CSS word-spacing用法及代碼示例
- CSS animation-delay用法及代碼示例
- CSS margin-top用法及代碼示例
- CSS grid屬性用法及代碼示例
- CSS font-size-adjust用法及代碼示例
- CSS visibility屬性用法及代碼示例
- CSS Display屬性用法及代碼示例
- CSS grid-template-columns用法及代碼示例
- CSS height屬性用法及代碼示例
注:本文由純淨天空篩選整理自DannanaManoj大神的英文原創作品 CSS | all Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。