一.div文本的
水平居中:margin:0 auto;
垂直居中:line-height:80px;注释:这里line-height的值要和div的高一致。
二:div盒子居中
给最外面的父元素设置宽高
给要水平垂直居中的div加定位
location { width:200px; height:200px; background-color: #00FF00; position: relative; top: 50%; left: 50%; margin-top: -100px; margin-left: -100px; }
如下图绿色是水平垂直居中的
原文地址:https://www.cnblogs.com/luckybaby519/p/10581369.html
时间: 2024-10-27 09:26:22