css calc()
2020-07-14 本文已影响0人
巨龙在盯着你呐
常用场景
1.元素绝对定位居中显示
.foo {
position: absolute;
top:calc(50% - 150px);
left:calc(50% - 150px);
}
2.栅格系统
width: calc(100% / 6)
3.清晰度
opcity: calc(1 / 10)
常用场景
1.元素绝对定位居中显示
.foo {
position: absolute;
top:calc(50% - 150px);
left:calc(50% - 150px);
}
2.栅格系统
width: calc(100% / 6)
3.清晰度
opcity: calc(1 / 10)