欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!
  root选择器简介
 
  在CSS3中,:root选择器用于选择文档的根元素。根元素指的是位于文档树中最顶层结构的元素。在HTML中,根元素永远是HTML。
 
  举例:
 
  <!DOCTYPEhtml>
 
  <htmlxmlns="http://www.w3.org/1999/xhtml">
 
  <head>
 
  <title>CSS3:root选择器</title>
 
  <styletype="text/css">
 
  :root
 
  {
 
  background-color:silver;
 
  }
 
  body
 
  {
 
  background-color:red;
 
  }
 
  </style>
 
  </head>
 
  <body>
 
  <h1>php中文网</h1>
 
  </body>
 
  </html>


微信截图_20181119101603.png




本文转载自中文网
 

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/css3-style/c56573.shtml