BFC
块状格式化上下文(block formatting context)简称 BFC:是页面上的一个隔离的独立容器,容器里面的子元素不会影响到外面的元素。
如何触发BFC?
BFC的定位方案
选择器权重
Css选择器优先级
margin 属性
水平居中 简单版
text-align: center;
// 设置 左右 margin 为 auto
margin: 0 auto;
垂直居中 简单版
// vertical-align 只对行内元素、表格单元格元素生效
// 指定 行内元素/表格单元元素 基线相对于 块状元素基线的位置
.center-table {
display: table;
}
.center-table p {
display: table-cell;
vertical-align: middle;
}
元素居中(水平且垂直) 进阶
通过 绝对定位 + 负margin
#main{
position: relative;
// ... 略
}
#center{
position: absolute;
width: 100px;
height: 100px;
left: 50%;
top: 50%;
margin: -50px;
}
通过 绝对定位 + margin: auto;
#main{
position: relative;
// ... 略
}
#center{
width: 100px;
height: 100px;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
position: absolute;
}
transform 居中
#main{
position: relative;
// ... 略
}
#center{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
flex 居中(一)
#main{
display: flex;
justify-content: center;
align-items: center;
}
flex 居中(二)
#main{
display: flex;
// ... 略
}
#center{
margin: auto;
}
浏览器如何解析 css
CSS属性支持判断
将高版本浏览器支持的特性写在后面。利用浏览器的2个CSS解析特性:
div {
background: red;
background: linear-gradient(90deg, red, yellow)
}
// 支持特定属性的处理
@supports (position:sticky) {
div {
position:sticky;
}
}
// 不支持特定属性:用not处理
@supports not (background: linear-gradient(90deg, red, yellow)) {
div {
background: red;
}
}
// 如果是多个css属性:用and处理
@supports (display:-webkit-box) and (-webkit-line-clamp:2) and (-webkit-box-orient:vertical) {
p {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
}
作为 @supports 的另一种形式出现的,我们可以使用 javascript 的方式来获得 CSS 属性的支持情况。
CSS.supports('display', 'flex'); 必须2个参数, 否则返回false,(目前不支持IE浏览器)
如果浏览器不支持@supports,可以通过调用ele.style来判断属性支持情况(库:Modernizr)
var root = document.documentElement; //HTML
for(var key in root.style) {
console.log(key);
}
// 将会打印
// alignContent
// alignItems
// alignSelf
// alignmentBaseline
// all
// animation
// ...
元素可能有 background 属性,但是不支持具体的 linear-gradinet() 属性值。这个时候该如何检测呢?只需要将具体的值赋值给某一元素,再查询这个属性值能否被读取。
var root = document.documentElement;
root.style.backgroundImage = 'linear-gradient(90deg, #888, #ccc)';
if(root.style.backgroundImage) {
// 支持
} else {
// 不支持
}
简单的 CSS 属性支持封装
通过页面隐藏的元素进行测试。
/**
* 用于简单的 CSS 特性检测
* @param [String] property 需要检测的 CSS 属性名
* @param [String] value 样式的具体属性值
* @return [Boolean] 是否通过检查
*/
function cssTest(property, value) {
// CSS && CSS.supports
// CSS.supports('display', 'flex'); 必须2个参数, 否则返回false
// 用于测试的元素,隐藏在页面上
var ele = document.getElementById('test-display-none');
// 只有一个参数的情况
if(arguments.length === 1) {
if(property in ele.style) {
return true;
}
// 两个参数的情况
}else if(arguments.length === 2){
ele.style[property] = value;
if(ele.style[property]) {
return true;
}
}
return false;
}
position定位 细节
position: absolute;
position:fixed
visibility:hidden、display:none、z-index=-1、opacity:0
清除浮动
浮动元素脱离了文档流,不能撑开元素。需要清除浮动。
清除浮动的方法
// 全浏览器通用的clearfix方案
// 引入了zoom以支持IE6/7
.clearfix:after {
display: table;
content: " ";
clear: both;
}
.clearfix{
*zoom: 1;
}
// 全浏览器通用的clearfix方案【推荐】
// 引入了zoom以支持IE6/7
// 同时加入:before以解决现代浏览器上边距折叠的问题
.clearfix:before,
.clearfix:after {
display: table;
content: " ";
}
.clearfix:after {
clear: both;
}
.clearfix{
*zoom: 1;
}
rem em px vw
伪类和伪元素的作用和区别
伪类:伪类选择元素基于的是当前元素处于的状态,或者说元素当前所具有的特性,功能和class有些类似,但它是基于文档之外的抽象,所以叫伪类(:first-child :link :visitive :hover :focus :lang)
伪元素:伪元素控制的内容实际上和元素是相同的,但是它本身只是基于元素的抽象,不存在于文档中,所以叫伪元素(:first-line :first-letter :befoe :after)