sass中使用at-root 和 @media

来源:互联网 发布:复杂系统与复杂网络 编辑:程序博客网 时间:2024/06/04 00:52

SASS代码

header {  position:relative;  display: block;  width: 100%;  height: 100%;  .rule {    width:100%;    text-align: center;    color:#fff;    font-size:14px;    @at-root & {      @media all and (min-height:660px)  {      & {        position:relative;        bottom:0;      }    }    }  }}

编译后

header {  position: relative;  display: block;  width: 100%;  height: 100%;}header .rule {  width: 100%;  text-align: center;  color: #fff;  font-size: 14px;}@media all and (min-height: 660px) {  header .rule {    position: relative;    bottom: 0;  }}
0 0
原创粉丝点击