实现效果如图:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
*{margin:0;padding:0;}
.mydiv{
width:200px;
height:200px;
background: red;
position:absolute;
left:50%;
margin-left:-100px;
top:50%;
margin-top:-100px;
}
/* 右下角 */
/* .mydiv div{
width: 50%;
height: 50%;
background: black;
position: absolute;
left: 100%;
top: 100%;
} */
/* 左上角 */
/* .mydiv div{
width: 50%;
height: 50%;
background: black;
position: absolute;
left: -50%;
top: -50%;
} */
/* 右上角 */
/* .mydiv div{
width: 50%;
height: 50%;
background: black;
position: absolute;
left: 100%;
top: -50%;
} */
/* 左下角 */
/* .mydiv div{
width: 50%;
height: 50%;
background: black;
position: absolute;
left: -50%;
top: 100%;
} */
</style>
</head>
<body>
<div class="mydiv">
<!-- 左移200
上200
宽100px
高100px
-->
<div >
<!-- 宽50
高50
left:100
top:100
-->
<div></div>
</div>
</div>
</body>
</html>
主要运用绝对定位,和百分比的方式实现
标签:练习,效果,top,50%,height,风筝,absolute,mydiv,left From: https://blog.51cto.com/u_15949973/6036030