两种方法实现盒子居中----以“回”字为例

Posted WEB前端工程师----钱成

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两种方法实现盒子居中----以“回”字为例相关的知识,希望对你有一定的参考价值。

<!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>

以上是关于两种方法实现盒子居中----以“回”字为例的主要内容,如果未能解决你的问题,请参考以下文章

实现未知元素垂直居中的方法

定位实现水平垂直居中的两种方法(无需计算)

将一个不定宽高的盒子设置水平垂直居中的六种方法

CSS实现盒子居中对齐的七种方法

将应用代码由eclipse导入Android studio的方法NDK-Build和Cmake两种方法(以android_serialport_api为例)

将一个块级元素水平和垂直居中的方法