为了账号安全,请及时绑定邮箱和手机立即绑定

sass编译后的css选择器性能问题

scss代码:

header {
  padding: 20px;
  h1 {
    font-size: 24px;
    a {
      text-decoration: none;
      &:hover {
        text-decoration: underline;
        background: url(1.png) 0 0 no-repeat;
        span {
          color: @red;
        }
      }
    }
  }
  img {
    border: none;
    &.glow {
      border: @border;
    }
  }
}

编译后的css:

header {
    padding:20px;
}
header h1 {
    font-size:24px;
}
header h1 a {
    text-decoration:none;
}
header h1 a:hover { 
    text-decoration:underline;
    background: url(1.png) 0 0 no-repeat;
}
header h1 a:hover span {
    color: #f00;
}
header img {
    border:none;
}
header img.glow { 
    border:solid 1px #f00;
}

sass编译后的css选择器层次过多,对浏览器渲染速度是不利的,有没有解决的办法?

正在回答

举报

0/150
提交
取消
Sass进阶篇
  • 参与学习       46635    人
  • 解答问题       97    个

对Sass其它较有难度的部分进行讲解,包括常用控制命令、函数

进入课程

sass编译后的css选择器性能问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信