首页 > 代码库 > 两种方法实现盒子居中----以“回”字为例
两种方法实现盒子居中----以“回”字为例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
*{
padding:0;
margin:0;
}
.box1 {
position: absolute;
top: 50%;
left: 50%;
width: 400px;
height: 300px;
border: 50px solid #000;
margin: -200px auto auto -250px;
}
.box2{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 150px;
height: 100px;
border: 50px solid #000;
}
</style>
</head>
<body>
<div class="box1">
<div class="box2">
</div>
</div>
</body>
</html>
两种方法实现盒子居中----以“回”字为例
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。