css设置垂直居中的几种方法
短信预约 -IT技能 免费直播动态提醒
这篇文章主要介绍了css设置垂直居中的几种方法,具有一定借鉴价值,需要的朋友可以参考下。下面就和我一起来看看吧。
使用line-height属性让文字垂直居中;2、使用CSS3 flex布局让文字垂直居中;3、使用绝对定位和transform让块状元素垂直居中;4、使用flex布局让块状元素垂直居中。
css设置文本文字垂直居中
1、line-height 使文字垂直居中
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>css 垂直居中</title><style>.box{ width: 300px; height: 300px; background: paleturquoise; line-height:300px;}</style></head><body><div class="box">css 垂直居中了--文本文字</div></body></html>
效果图:
这样就能让div中的文字水平垂直居中了
2、CSS3的flex布局 使文字垂直居中
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>css 垂直居中</title><style>.box{ width: 300px; height: 200px; background: paleturquoise; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-align: center; -moz-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center;}</style></head><body><div class="box">css 垂直居中--文本文字(弹性布局)</div></body></html>
效果图:
css设置块状元素垂直居中
1、使用绝对定位和transform(未知元素高度)
如果我们不知道元素的高度,那么就需要先将元素定位到容器的中心位置,然后使用 transform 的 translate 属性,将元素的中心和父容器的中心重合,从而实现垂直居中:
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>css 垂直居中</title><style>.box{width: 300px; height: 300px; background: #ddd; position: relative;}.child{background: #93BC49; position: absolute; top: 50%; transform: translate(0, -50%);}</style></head><body><div class="box"> <div class="child">css 垂直居中,css 垂直居中,css 垂直居中,css 垂直居中,css 垂直居中</div></div></body></html>
效果图:
2、使用flex布局
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>css 垂直居中</title><style>.box{width: 300px; height: 300px; background: #ddd; display: flex; flex-direction: column; justify-content: center;}.child{width: 300px; height: 100px; background: #08BC67; line-height: 100px;}</style></head><body><div class="box"> <div class="child">css 垂直居中了--弹性布局</div></div></body></html>
效果图:
以上就是css设置垂直居中的几种方法的详细内容了,看完之后是否有所收获呢?如果想了解更多相关内容,欢迎来编程网行业资讯!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341