Rumah > Artikel > hujung hadapan web > web前端面试中10个关于css高频面试题
BFC(Block Formatting Context),块级格式化上下文,是一个独立的渲染区域,让处于 BFC 内部的元素与外部的元素相互隔离,使内外元素的定位不会相互影响。
在IE下, Layout,可通过
zoom:1
触发
可以阻止元素被浮动元素覆盖
专题推荐:2020年CSS面试题汇总(最新)
这里只是列出来, 具体的使用,请查看我的关于css3新增选择器与属性文章
属性选择器 |
含义描述 |
---|---|
E[att^="val"] |
属性att的值以"val"开头的元素 |
E[att$="val"] |
属性att的值以"val"结尾的元素 |
E[att*="val"] |
属性att的值包含"val"字符串的元素 |
选择器 |
含义描述 |
---|---|
E:root |
匹配文档的根元素,对于HTML文档,就是HTML元素 |
E:nth-child(n) |
匹配其父元素的第n个子元素,第一个编号为1 |
E:nth-last-child(n) |
匹配其父元素的倒数第n个子元素,第一个编号为1 |
E:nth-of-type(n) |
与:nth-child()作用类似,但是仅匹配使用同种标签的元素 |
E:nth-last-of-type(n) |
与:nth-last-child() 作用类似,但是仅匹配使用同种标签的元素 |
E:last-child |
匹配父元素的最后一个子元素,等同于:nth-last-child(1) |
E:first-of-type |
匹配父元素下使用同种标签的第一个子元素,等同于:nth-of-type(1) |
E:last-of-type |
匹配父元素下使用同种标签的最后一个子元素,等同于:nth-last-of-type(1) |
E:only-child |
匹配父元素下仅有的一个子元素,等同于:first-child:last-child或 :nth-child(1):nth-last-child(1) |
E:only-of-type |
匹配父元素下使用同种标签的唯一一个子元素,等同于:first-of-type:last-of-type或 :nth-of-type(1):nth-last-of-type(1) |
E:empty |
匹配一个不包含任何子元素的元素,注意,文本节点也被看作子元素 |
属性 |
含义描述 |
兼容 |
---|---|---|
transition |
设置过渡效果 |
|
transform |
变换效果(移动、缩放、转动、拉长或拉伸) |
|
animation |
动画效果 |
|
box-shadow |
阴影效果 |
FF3.5, Safari 4, Chrome 3 |
text-shadow |
文本阴影 |
FF 3.5, Opera 10, Safari 4, Chrome 3 |
border-colors |
为边框设置多种颜色 |
FF3+ |
boder-image |
图片边框 |
FF 3.5, Safari 4, Chrome 3 |
text-overflow |
文本截断 |
IE6+, Safari4, Chrome3, Opera10 |
word-wrap |
自动换行 |
IE6+, FF 3.5, Safari 4, Chrome 3 |
border-radius |
圆角边框 |
FF 3+, Safari 4 , Chrome 3 |
opacity |
不透明度 |
all |
box-sizing |
控制盒模型的组成模式 |
FF3+, Opera 10, Safari 4, Chrome 3 |
outline |
外边框 |
FF3+, safari 4, chrome 3, opera 10 |
background-size |
不指定背景图片的尺寸 |
safari 4, chrome 3, opera 10 |
background-origin |
指定背景图片从哪里开始显示 |
safari 4, chrome 3, FF 3+ |
background-clip |
指定背景图片从什么位置开始裁切 |
safari 4, chrome 3 |
rgba |
基于r,g,b三个颜色通道来设置颜色值, 通过a来设置透明度 |
safari 4, chrome 3, FF3, opera 10 |
text-align:center
margin:0 auto
absolute + transform
absolute + margin
flex + justify-content:center
line-height:height
absolute + transform
flex + align-items:center
display:table-cell; vertical-align: middle
1. 已知元素宽高:绝对定位+margin:auto:
p{ width: 200px; height: 200px; background: green; position:absolute; left:0; top: 0; bottom: 0; right: 0; margin: auto; }
2. 已知元素宽高: 绝对定位+负margin
p{ width: 200px; height: 200px; background: green; position:absolute; left:0; top: 0; bottom: 0; right: 0; margin: auto; }
3. absolute+transform
p{ width: 200px; height: 200px; background: green; position:absolute; left:50%; /* 定位父级的50% */ top:50%; transform: translate(-50%,-50%); /*自己的50% */ }
4.flex + justify-content + align-items
.box{ height:600px; display:flex; justify-content:center; //子元素水平居中 align-items:center; //子元素垂直居中 /* aa只要三句话就可以实现不定宽高水平垂直居中。 */ } .box>p{ background: green; width: 200px; height: 200px; }
5e61f882fc28a1ad04b8488b9fa829db94b3e26ee717c64999d7867364b1b4a3
,并在CSS中赋予.clear{clear:both;}
属性即可清理浮动。亦可使用db9da0c8f2980956c6531e0c04ab02d3
或1d4f066caf78b94378f889402f3c966c
来进行清理。优点: 简单, 写少量代码, 兼容性也好 缺点: 添加无语义html元素, 不利于代码语义化, 后期维护成本大
overflow:hidden;
或overflow:auto;
可以清除浮动,另外在 IE6 中还需要触发 hasLayout ,例如为父元素设置容器宽高或设置zoom:1
。在添加overflow属性后,浮动元素又回到了容器层,把容器高度撑起,达到了清理浮动的效果。优点: 简单, 代码少, 浏览器支持好 缺点: 不能和position配合使用, 因为超出的尺寸会被隐藏
overflow:hidden
clearfix
的class,然后给这个class添加一个:after伪元素实现元素末尾添加一个看不见的块元素(Block element)清理浮动。 通过CSS伪元素在容器的内部元素最后添加了一个看不见的空格"020"或点".",并且赋予clear属性来清除浮动。需要注意的是为了IE6和IE7浏览器,要给clearfix这个class添加一条zoom:1;触发haslayout。优点: 浏览器支持好,不容易出现怪问题(目前:大型网站都有使用,如:腾迅,网易,新浪等等) 缺点: 代码多,要两句代码结合使用,才能让主流浏览器都支持
简单, 代码少,好掌握 缺点: 只适用于高度固定的布局
之前写三角形, 都是直接记住代码,没有探究原因,我也是直到有一次面试时,面试大哥让我说说css创建三角形的原理,我就......回来就赶紧翻资料.接下来我就将当时我理解的过程列举出来:
1. 写一个我们最熟悉的 border应用
.box{ width:100px; height:100px; border: 3px solid; border-color:#1b93fb #1bfb24 #efad48 #ef4848; }
效果如下:
2. 接下来,我们将border值增大
.box{ width:100px; height:100px; border: 50px solid; border-color:#1b93fb #1bfb24 #efad48 #ef4848; }
很容易发现, border渲染并不是正方形, 而是梯形的.
3. 在增大border的基础下, 此时我们将盒子宽高变成0,会产生什么效果呢!
.box{ width:0px; height:0px; border: 50px solid; border-color:#1b93fb #1bfb24 #efad48 #ef4848; }
四个三角形拼合成的矩形呈现在我们眼前,那如如果我们只想要一个三角形, 我们是不是可以设想将其他三个设为不可见;
4. 设置透明, 隐藏其中三个三角形
.box{ width:0px; height:0px; border: 50px solid; border-color:transparent transparent transparent #ef4848; }
三角形这样就出来, 有木有很简单, 当然我们也可以采用逆向思维来写这个效果, 就是先将所有边框设为透明, 然后需要哪边再对其设置颜色, 效果是一样的
.box{ width:0px; height:0px; border: 50px solid transparent; border-left:50px solid #ef4848; }
这样给面试你的人讲,讲明白应该不是问题., 重点就是要理解border的应用
三栏布局,顾名思义就是两边固定,中间自适应。三栏布局在开发十分常见,那么什么是三栏布局? 即左右模块固定宽度,中间模块随浏览器变化自适应,想要完成的最终效果如下图所示:
下面列出四种实现方式, 在开发中可以根据实际需求选择适合自己的方法进行编码:
<style> .container{ display:flex; justify-content: center; height: 200px; background: #eee; } .left { width: 200px; background-color: red; height: 100%; } .main { background-color: yellow; flex: 1; } .right { width: 200px; background-color: green; } </style> <p class="container"> <p class="left">1</p> <p class="main">2</p> <p class="right">3</p> </p>
简单实用,现在比较流行的方案,但是需要考虑浏览器的兼容性。
<style> .container { position: relative; background:#eee; height:200px; } .main { height: 200px; margin: 0 120px; background-color: yellow; } .left { position: absolute; width: 100px; height: 200px; left: 0; top: 0; background-color: red; } .right { position: absolute; width: 100px; height: 200px; background-color: green; right: 0; top: 0; } </style> <p class="container"> <p class="left">1</p> <p class="main">2</p> <p class="right">3</p> </p>
这种方案也简单实用, 并且可以将
19c136f7655d60e76c6f77589880575894b3e26ee717c64999d7867364b1b4a3
元素放到第一位,使得主要内容优先加载!
<style> .content { float: left; width: 100%; } .main { height: 200px; margin-left: 110px; margin-right: 220px; background-color: yellow; } .left { float: left; height: 200px; width: 100px; margin-left: -100%; background-color: red; } .right { width: 200px; height: 200px; float: right; margin-left: -200px; background-color: green; } </style> <p class="content"> <p class="main"></p> </p> <p class="left"></p> <p class="right"></p>
<style> .container { margin-left: 120px; margin-right: 220px; } .main { float: left; width: 100%; height: 300px; background-color: yellow; } .left { float: left; width: 100px; height: 300px; margin-left: -100%; position: relative; left: -120px; background-color: blue; } .right { float: left; width: 200px; height: 300px; margin-left: -200px; position: relative; right: -220px; background-color: green; } </style> <p class="container"> <p class="main"></p> <p class="left"></p> <p class="right"></p> </p>
圣杯布局和双飞翼布局解决问题的方案在前一半是相同的,也就是三栏全部float浮动,但左右两栏加上负margin让其跟中间栏p并排,以形成三栏布局。
<style> .line { position: relative; } .line:after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 1px; background-color: #000000; -webkit-transform: scaleY(.5); transform: scaleY(.5); } </style> <p class="line"></p>
@import是 CSS 提供的语法规则,只有导入样式表的作用;link是HTML提供的标签,不仅可以加载 CSS 文件,还可以定义 RSS、rel 连接属性等
加载页面时,link标签引入的 CSS 被同时加载;@import引入的 CSS 将在页面加载完毕后被加载。
@import是 CSS2.1 才有的语法,故只可在 IE5+ 才能识别;link标签作为 HTML 元素,不存在兼容性问题。
可以通过 JS 操作 DOM ,插入link标签来改变样式;由于DOM方法是基于文档的,无法使用@import的方式插入样式。
css部分就整理到这里, 小伙伴们面试还有什么经常遇到的,可以在评论区给我留言, 我有时间就整理出来, IT(挨踢)都是一大家, 方便你我他
因为浏览器的兼容问题,不同浏览器对有些标签的默认值是不同的,如果没对CSS初始化往往会出现浏览器之间的页面显示差异。
相关教程推荐:CSS视频教程
Atas ialah kandungan terperinci web前端面试中10个关于css高频面试题. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!