时间:2021-05-08
CSS 居中对齐
flex 居中
优点:可对未知高度进行居中处理
<style> .wrap{height: 100%;display: flex; justify-content: center; align-items: center;align-content:center;} .other{background-color: #ccc; width: 400px;height: 400px;} </style><div class="wrap"> <div class="other"> <h2>这是第二层的内容 不会居中</h2> </div></div>position + translate 居中
优点: 可对未知高度进行居中处理、嵌套层最少
<style> .center{position: absolute;left: 50%;top: 50%; transform: translate(-50%,-50%);} .other{background-color: #ccc; } </style><div class="center other"> <h2>这一层的内容 不会居中</h2></div>table-cell 居中
缺点:1. 居中层需要设置宽度(.center)。 2.外层多嵌套一层(.cell) 3. 居中层必须设置宽度(允许 %)
<style> .wrap{display: table;width: 100%;height: 100%;} .cell{display: table-cell;vertical-align:middle;} .center{width: 400px;margin-left:auto;margin-right:auto;} .other{background-color: #ccc; height: 400px;} </style><div class="wrap"> <div class="cell"> <div class="center other"> <h2>这一层的内容 不会居中</h2> </div> </div></div>传统居中 (2种)
缺点:1. margin 值必须为auto。 2. 居中层必须设置高宽(允许 %) 3. 必须使用 position
<style> .center{position: absolute;left: 10px;top: 10px;right: 10px;bottom: 10px;margin: auto;width: 400px;height: 400px;} .other{background-color: #ccc; } </style><div class="center other"> <h2>这一层的内容 不会居中</h2></div>缺点: 居中层必须设置固定高宽,并且magin需要通过高宽计算得出。
<style> .wrap{position: relative;height: 100%;} .center{position: absolute;left: 50%;top: 50%; width: 400px;height: 300px; margin-left: -200px;margin-top: -150px;} .other{background-color: #ccc; } </style><div class="wrap"> <div class="center other"> <h2>这一层的内容 不会居中</h2> </div></div>总结
以上所述是小编给大家介绍的CSS 垂直水平居中的5种最佳解决方案,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
设计,是一个寻求最佳解决方案的过程,持续的设计意味着持续的追求更好的解决方案。设计是过程,而非结果。人们会设计各种东西,包括界面、电器、家具、房屋、CPU、体验
CSS的居中有水平居中和垂直居中,这两种居中又分为行内元素居中和块级元素居中,不同的居中用不同方法。水平居中1、行内元素水平居中(文本,图片)给父层设置text
本文实例为大家分享了BootStrap模态框不垂直居中的解决方法,供大家参考,具体内容如下解决问题:BootStrap自带的模态框不垂直居中解决方案:调用Boo
设计是寻找最佳解决方案的过程。持续设计意味着不断追求更好的解决方案。设计是一个过程,而不是一个结果。人们设计各种各样的东西,包括接口、电器、家具、房子、CPU、
水平位置居中可以使用CSS属性text-align来控制。 text-align:center;//文本居中 如果需要文字垂直位置居中解决方法一般使用设