css⾃定义属性
css⾃定义属性分为全局定义属性和局部定义属性。
⼀:全局
  1.定义:
  :root{    //此处的root是固定的。
    --them-color:blue;    //⾃定义属性时以--开头,告诉浏览器这是⾃定义的。
  }
  2.使⽤:
  <style type="text/css">
cssclass属性
    .div{
      background-color:var(--them-color);
      //如果⾃定义的属性出不来或其他问题,可在之后写属性值。例如:background-color:var(--them-color,blue);
        也可写另⼀个属性名:background-color:var(--them-color,var(--them-color1));
    }
  </style>
  <div class="div">111</div>
⼆:局部
  1:定义
  .foo{
    --them-color:yellow;
  }
 .div{
  color:var(--them-color);
  }
  2:使⽤:
  <div class="foo div">121321</div>  //此处的foo相当于⼀个基类,⽬的是存取所有的属性值,他的⼦元素从这个库⾥取属性。
例⼦:
<style type="text/css">
.foo{
--them:yellow;
--width-outer:800px;
--height-outer:400px;
--width-inner:100px;
--height-inner:100px;
--bg-inner1:red;
--bg-inner2:orange;
--bg-inner3:purple;
}
.div{
width: var(--width-outer);
height: var(--height-outer);
border:1px solid var(--them);
margin: 20px auto;
}
.
foo div:nth-child(1){
width: var(--width-inner);
height: var(--height-inner);
background-color: var(--bg-inner1);
}
.foo div:nth-child(2){
width: var(--width-inner);
height: var(--height-inner);
background-color: var(--bg-inner2);
}
.foo div:nth-child(3){
width: var(--width-inner);
height: var(--height-inner);
background-color: var(--bg-inner3);
}
</style>
<body>
<div class="div">
<div></div>
<div></div>
<div></div>
</div>
</body>
四:总结
在⼀个组件⾥或者全局将经常使⽤的属性提取出来,⽐如主题⾊,⽤的时候直接使⽤变量。便于维护代码,改的时候直接改⼀处即可。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。