双飞翼布局(练习)

2018-06-24 01:14:44来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body{
margin: 0;
padding: 0;
}
.bigbox .one {
margin: 0 200px 0 300px;
background: red;
height: 500px;
}
.bigbox .two {
background: blue;
width: 300px;
height: 500px;
position: absolute;
left: 0px;
top: 0;
}
.bigbox .three {
background: pink;
width: 200px;
height: 500px;
position: absolute;
right: 0;
top: 0;
}
</style>
</head>
<body>
<div class="bigbox">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
</body>
</html>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:网页布局基础

下一篇:从零开始学习html(一) Html介绍