美文网首页
CSS选择器,优先级排序,计算属性

CSS选择器,优先级排序,计算属性

作者: Poppy11 | 来源:发表于2020-07-04 15:57 被阅读0次

选择器

  • id选择器 #id
  • 类选择器 .class
  • 标签选择器 el

优先级

!important > 内联样式 > id选择器 > 类、伪类、属性选择器 > 标签、伪元素选择器

计算属性calc(百分比 - 像素)

// 父元素
.box{
    width:100%;
    height:100;
}
// 子元素左边
.boxLeft{
    width:50px;
    height:100%;
}
// 子元素右边
.boxRight{
    width:calc(100% - 50px);
    height:100;
}

相关文章

网友评论

      本文标题:CSS选择器,优先级排序,计算属性

      本文链接:https://www.haomeiwen.com/subject/trjaxktx.html