怪异盒模型: border+content
专题推荐:2020年CSS面试题汇总(最新)
.p { color: red; /*IE 8+*/ *color: green; /*IE 7*/ _color: yellow; /*IE 6*/}
/*IE 6*/* html .p { color: red;}/*IE 7*/* + html .p { color: green;}
@support用来检测浏览器是否支持某个css属性,可以理解为条件判断,一般用作兼容性处理。
媒体查询,根据视口大小写对应的css样式,一般配合rem做移动端的兼容。
css的计算属性,用于动态计算长度值,支持数学运算。
::after { content: ""; clear: both; overflow: hidden; height: 0;}
+原理:利用伪元素给父元素添加一个高度为0的table
.p { color: red; /*IE 8+*/ *color: green; /*IE 7*/ _color: yellow; /*IE 6*/}
/*IE 6*/* html .p { color: red;}/*IE 7*/* + html .p { color: green;}
@support用来检测浏览器是否支持某个css属性,可以理解为条件判断,一般用作兼容性处理。
媒体查询,根据视口大小写对应的css样式,一般配合rem做移动端的兼容。
css的计算属性,用于动态计算长度值,支持数学运算。
::after { content: ""; clear: both; overflow: hidden; height: 0;}
+原理:利用伪元素给父元素添加一个高度为0的table
相关教程推荐:CSS视频教程
以上就是整理css常见面试题的详细内容,更多请关注其它相关文章!