實現任意元素居中
阿新 • • 發佈:2018-12-27
<style>
*{
padding: 0;
margin: 0;
}
.box{
width: 400px;
height: 400px;
border-radius: 200px;
background-color: #ccc;
margin:100px auto;
position: relative;
}
.rec{
width: 200px;
height: 200px;
background-color: red;
position: absolute;
/*定位的百分比是參照父容器的寬高*/
left: 50%;
top: 50%;
/*使用transform實現元素的居中 百分比是參照元素本身的寬高*/
transform: translate(-50%,-50%);
/*transform: translate(-50px,-50px);*/
}
</style>
</head>
<body>
<div class="box">
<div class="rec"></div>
</div>