水平垂直居中(固定宽不固定宽)
Posted 心向阳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了水平垂直居中(固定宽不固定宽)相关的知识,希望对你有一定的参考价值。
1、水平垂直居中
方法一:使用absolute定位的时候,元素脱离文档流,导致margin:auto;失效,需要配合使用left:0;right:0;top:0;bottom:0;
<div class="box"> <div class="center-middle"></div> </div> .box{ position:relative; width:300px; height:300px; background-color:yellow; } .center-middle { width:100px; height:100px; position:absolute; left:0; right:0; top:0; bottom:0; margin:auto; background-color:#ccc; }
以上是关于水平垂直居中(固定宽不固定宽)的主要内容,如果未能解决你的问题,请参考以下文章