BFC(Block Formatting Context),块级格式化上下文,是一个独立的渲染区域,让处于 BFC 内部的元素与外部的元素相互隔离,使内外元素的定位不会相互影响。
在IE下, Layout,可通过
zoom:1
触发
.BFC布局与普通文档流布局区别
普通文档流布局:
BFC布局规则:
开发中的应用
这里只是列出来, 具体的使用,请查看我的关于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
已知元素宽高:绝对定位+margin:auto:
div{
width: 200px;
height: 200px;
background: green;
position:absolute;
left:0;
top: 0;
bottom: 0;
right: 0;
margin: auto;
}
已知元素宽高: 绝对定位+负margin
div{
width: 200px;
height: 200px;
background: green;
position:absolute;
left:0;
top: 0;
bottom: 0;
right: 0;
margin: auto;
}
absolute+transform
div{
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>div{
background: green;
width: 200px;
height: 200px;
}
,并在CSS中赋予.clear{clear:both;}
属性即可清理浮动。亦可使用
或
来进行清理。优点: 简单, 写少量代码, 兼容性也好
缺点: 添加无语义html元素, 不利于代码语义化, 后期维护成本大
overflow:hidden;
或overflow:auto;
可以清除浮动,另外在 IE6 中还需要触发 hasLayout ,例如为父元素设置容器宽高或设置zoom:1
。在添加overflow属性后,浮动元素又回到了容器层,把容器高度撑起,达到了清理浮动的效果。优点: 简单, 代码少, 浏览器支持好
缺点: 不能和position配合使用, 因为超出的尺寸会被隐藏overflow:hidden
clearfix
的class,然后给这个class添加一个:after伪元素实现元素末尾添加一个看不见的块元素(Block element)清理浮动。优点: 浏览器支持好,不容易出现怪问题(目前:大型网站都有使用,如:腾迅,网易,新浪等等)
缺点: 代码多,要两句代码结合使用,才能让主流浏览器都支持
简单, 代码少,好掌握
缺点: 只适用于高度固定的布局
之前写三角形, 都是直接记住代码,没有探究原因,我也是直到有一次面试时,面试大哥让我说说css创建三角形的原理,我就…回来就赶紧翻资料.接下来我就将当时我理解的过程列举出来:
.box{
width:100px;
height:100px;
border: 3px solid;
border-color:#1b93fb #1bfb24 #efad48 #ef4848;
}
.box{
width:100px;
height:100px;
border: 50px solid;
border-color:#1b93fb #1bfb24 #efad48 #ef4848;
}
.box{
width:0px;
height:0px;
border: 50px solid;
border-color:#1b93fb #1bfb24 #efad48 #ef4848;
}
四个三角形拼合成的矩形呈现在我们眼前,那如如果我们只想要一个三角形, 我们是不是可以设想将其他三个设为不可见;
.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>
<div class="container">
<div class="left">1div>
<div class="main">2div>
<div class="right">3div>
div>
简单实用,现在比较流行的方案,但是需要考虑浏览器的兼容性。
<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>
<div class="container">
<div class="left">1div>
<div class="main">2div>
<div class="right">3div>
div>
这种方案也简单实用, 并且可以将
元素放到第一位,使得主要内容优先加载!
<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>
<div class="content">
<div class="main">div>
div>
<div class="left">div>
<div class="right">div>
<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>
<div class="container">
<div class="main">div>
<div class="left">div>
<div class="right">div>
div>
圣杯布局和双飞翼布局解决问题的方案在前一半是相同的,也就是三栏全部float浮动,但左右两栏加上负margin让其跟中间栏div并排,以形成三栏布局。
<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>
<div class="line">div>
@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初始化往往会出现浏览器之间的页面显示差异。
欢迎在评论下方指点一二,看还有哪些没考虑到的,互相交流一下…