选择器
- id选择器 #id
- 类选择器 .class
- 标签选择器 el
优先级
!important > 内联样式 > id选择器 > 类、伪类、属性选择器 > 标签、伪元素选择器
计算属性calc(百分比 - 像素)
// 父元素
.box{
width:100%;
height:100;
}
// 子元素左边
.boxLeft{
width:50px;
height:100%;
}
// 子元素右边
.boxRight{
width:calc(100% - 50px);
height:100;
}
网友评论