浏览器的可视区域都是这个div的区域
块级元素,转换成table,然后vertical-align: middle参考:http://www.dreawer.com/question/f72f5228fa354b458312757798c75e4e.htmlhttp://www.dreawer.com/question/dfd4754a5b2542999e267bcc33f4cde7.htmlhttp://www.dreawer.com/question/4050b65606414a60a4c5972f62ff587b.html
css3 有很多解决方案,如下:.center {display: flex;justify-content: center;align-items: center;}.center 是父元素,这样它内部的元素就绝对居中了,tablecell可以作为降级的解决方案,毕竟不是所有的浏览器都是支持css3的
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
块级元素,转换成table,然后vertical-align: middle
参考:
http://www.dreawer.com/question/f72f5228fa354b458312757798c75e4e.html
http://www.dreawer.com/question/dfd4754a5b2542999e267bcc33f4cde7.html
http://www.dreawer.com/question/4050b65606414a60a4c5972f62ff587b.html
css3 有很多解决方案,如下:
.center {
display: flex;
justify-content: center;
align-items: center;
}
.center 是父元素,这样它内部的元素就绝对居中了,tablecell可以作为降级的解决方案,毕竟不是所有的浏览器都是支持css3的