Vue中样式实现居中
我们经常用margin:0 auto来实现水平居中,而一直认为margin:auto不能实现垂直居中……实际上,实现垂直居中仅需要声明元素高度和下面的CSS:.Absolute-Center {margin: auto;position: absolute;top: 0; left: 0; bottom: 0; right: 0;}最近使用了这个效果,转载于:https://www.cnblogs
·
我们经常用margin:0 auto来实现水平居中,而一直认为margin:auto不能实现垂直居中……实际上,实现垂直居中仅需要声明元素高度和下面的CSS:
.Absolute-Center {
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
最近使用了这个效果,转载于:
https://www.cnblogs.com/doseoer/p/4581284.html
更多推荐
已为社区贡献2条内容
所有评论(0)