我想到了两种CSS方法实现:1..box{margin:auto;position:absolute;left:0;right:0;bottom:0;top:0;width:200px;height:200px;}2..box{position:absolute;left:50%;right:50%;width:200px;height:200px;margin-left:-100px;margin-top:-100px;}测试后神奇的发现,第二种方法下,盒子值上下居中,不能左右居中,请问是什么问题造成的(页面中没有其他多余的样式,只加了box的样式,加了一个div标签)。
2 回答
脑袋空空空想家
TA贡献42条经验 获得超49个赞
position设置成为absolute以后,margin就会失效了。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ajax</title>
<style>
.a1{
width: 100px;
height: 100px;
position: absolute;
background-color: red;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
- 2 回答
- 0 关注
- 3414 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消