水平垂直举重
<style type="text/css">
.content{
width: 500px;
height: 500px;
position: relative;
background-color: #00FFFF;
overflow: hidden;
}
.inner{
width: 300px;
height: 300px;
background-color: orange;
position: absolute;
top: 50%;
left: 50%;
margin-top: -150px;
margin-left: -150px;
}
</style>
</head>
<body>
<div class="content">
<div class="inner">
</div>
</div>
</body>

浙公网安备 33010602011771号