CSS |:根选择器
:根选择器用于选择 HTML 文档的所有元素。这个选择器覆盖了所有的 HTML 元素或标签。
语法:
:root {
// CSS property
}
示例:
<!DOCTYPE html>
<html>
<head>
<title>root selector</title>
<style>
h1 {
color:White;
}
:root {
background: green;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>:root selector</h2>
<p>The root of document is <body> tag</p>
</body>
</html>
输出:
支持的浏览器::根选择器支持的浏览器如下:
- 苹果 Safari 3.2
- 谷歌 Chrome 4.0
- Firefox 3.5
- 歌剧 9.6
- Internet Explorer 9.0
版权属于:月萌API www.moonapi.com,转载请注明出处