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; }
原文地址:https://www.cnblogs.com/qdlhj/p/9094547.html
时间: 2024-10-09 08:11:34