最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
css中三种绝对定位元素的水平垂直居中的方法
时间:2022-06-25 08:56:17 编辑:袖梨 来源:一聚教程网
1.css实现居中
缺点:需要提前知道元素的宽度和高度。
.box{
width: 600px;
height: 400px;
position: absolute;
left: 50%; top: 50%;
border:1px solid #000;
background:red;
margin-top: -200px; /* 高度的一半 */
margin-left: -300px; /* 宽度的一半 */
}
|