html让容器居中,css让容器⽔平垂直居中的7种⽅式
这篇⽂章主要为⼤家详细介绍了css让容器⽔平垂直居中的7种⽅式,具有⼀定的参考价值,感兴趣的⼩伙伴们可以参考⼀下
这种css布局平时⽤的⽐较多,也是⾯试题常出的⼀个题,⽹上⼀搜⼀⼤丢,不过还是想⾃⼰总结⼀下。
这种⽅法⽐较多,本⽂只总结其中的⼏种,以便加深印象。
效果图都为这个:
⽅法⼀:position加
/HTML Code复制内容到剪贴板, CSS Code复制内容到剪贴板/**css**/
.wrap { width: 200px; height: 200px; background: yellow; position: relative;}
.wrap .center { width: 100px; height: 100px; background: green; margin: auto; position: absolute; left: 0; rightright: 0; top: 0; bottombottom: 0;}
兼容性:主流浏览器均⽀持,IE6不⽀持
⽅法⼆:diaplay:table-cell
XML/HTML Code复制内容到剪贴板, CSS Code复制内容到剪贴板/*css*/
.wrap{ width: 200px; height: 200px; background: yellow; display: table-cell; vertical-align: middle; text-align: center;}
.center{ display: inline-block; vertical-align: middle; width: 100px; height: 100px; background: green;}
兼容性:由于display:table-cell的原因,IE67不兼容
⽅法三:position加 transform
XML/HTML Code复制内容到剪贴板, CSS Code复制内容到剪贴板/* css */
.wrap { position: relative; background: yellow; width: 200px; height: 200px;}
.center { position: absolute; background: green; top:50%; left:50%; -webkit-transform:translate(-50%,-50%); transform:translate(-50%,-50%); width: 100px; height: 100px;}
兼容性:ie9以下不⽀持 transform,⼿机端表现的⽐较好。
⽅法四:flex;align-items: center;justify-content: center
XML/HTML Code复制内容到剪贴板, CSS Code复制内容到剪贴板/* css */
.wrap { background: yellow; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center;}
.center { background: green; width: 100px; height: 100px;}
移动端⾸选
⽅法五:display:flex;margin:auto
XML/HTML Code复制内容到剪贴板, CSS Code复制内容到剪贴板/* css */
.wrap { background: yellow; width: 200px; height: 200px; display: flex;}
.center { background: green; width: 100px; height: 100px; margin: auto;}
移动端⾸选
⽅法六:纯position
XML/HTML Code复制内容到剪贴板, CSS Code复制内容到剪贴板/* css */
.wrap { background: yellow; width: 200px; height: 200px; position: relative;}
/**⽅法⼀**/
.center { background: green; position: absolute; width: 100px; height: 100px; left: 50px; top: 50px;}
/**⽅法⼆**/
.center { background: green; position: absolute; width: 100px; height: 100px; left: 50%; top: 50%; margin-left:-50px; margin-top:-50px;}
兼容性:适⽤于所有浏览器
⽅法六中的⽅法⼀计算公式如下:
⼦元素(conter)的left值计算公式:left=(⽗元素的宽 - ⼦元素的宽 ) / 2=(200-100) / 2=50px;
⼦元素(conter)的top值计算公式:top=(⽗元素的⾼ - ⼦元素的⾼ ) / 2=(200-100) / 2=50px;
⽅法⼆计算公式:
left值固定为50%;
⼦元素的margin-left= -(⼦元素的宽/2)=-100/2= -50px;
top值也⼀样,固定为50%
⼦元素的margin-top= -(⼦元素的⾼/2)=-100/2= -50px;
⽅法七:兼容低版本浏览器,不固定宽⾼
XML/HTML Code复制内容到剪贴板
不固定宽⾼,⾃适应
CSS Code复制内容到剪贴板/*css*/
.table { height: 200px;/*⾼度值不能少*/ width: 200px;/*宽度值不能少*/ display: table; position: relative; float:left; background: yellow;} .tableCell { display: table-cell; vertical-align: middle; text-align: center; position: absolute; padding: 10px; top: 50
暂时总结上⾯的七种,这种⽅法太多,其实只要习惯了其中的⼀两种也就够⽤了。
总结
如果是移动端,那么⽤⽅法四和⽅法五是⽐较⽅便的。⽽且⽀持不固定宽⾼的情况,快、准、狠
也就是⽤ flex; align-items: center; justify-content: center;
XML/HTML Code复制内容到剪贴板, CSS Code复制内容到剪贴板/* css */
.wrap { background: yellow; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center;}
.center { background: green; width: 100px; height: 100px;}
或者display:flex;margin:auto;
XML/HTML Code复制内容到剪贴板, CSS Code复制内容到剪贴板/* css */
.wrap { background: yellow; width: 200px; height: 200px; display: flex;}
.center { background: green; width: 100px; height: 100px; margin: auto;}
如果是PC端,要考虑兼容性的话。⽅法六是不错滴,也就是纯position。
XML/HTML Code复制内容到剪贴板, CSS Code复制内容到剪贴板/* css */
.wrap { background: yellow; width: 200px; height: 200px; position: relative;}
/**⽅法⼀**/
html全部居中代码
.center { background: green; position: absolute; width: 100px; height: 100px; left: 50px; top: 50px;}
/**⽅法⼆**/
.center { background: green; position: absolute; width: 100px; height: 100px; left: 50%; top: 50%; margin-left:-50px; margin-top:-50px;}
如果PC端的中间的元素⾼度不固定,那么就⽤⽅法七即可,代码就不复制了。
这种css元素垂直的如果真的要总结起来,应该有⼗⼏⼆⼗⼏种。不过也没必要全部掌握吧,只要⼤概了解⼀些,⽤起来没有副作⽤就⾏。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。