色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

html定位實例代碼

黃文隆1年前7瀏覽0評論

HTML定位實例代碼

<!DOCTYPE html>
<html>
<head>
<style>
#container {
width: 400px;
height: 300px;
position: relative;
background-color: #eee;
}
#box {
width: 100px;
height: 100px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -50px;
background-color: #ff0;
}
</style>
</head>
<body>
<div id="container">
<div id="box"></div>
</div>
</body>
</html>

上面的代碼實現了一個在瀏覽器中居中顯示的黃色正方形,這里通過將盒子的左邊界和頂部邊界設置為父容器的一半并用負數外邊距來實現水平和垂直居中。

上一篇vue abp
下一篇vue im demo