发布网友 发布时间:2022-04-22 01:11
共1个回答
热心网友 时间:2024-03-05 02:20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>懂点君</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
.wrap {
width: 300px;
height: 300px;
}
.wrap div:nth-child(1) {
float: left;
width: 200px;
height: 100px;
background-color: #000;
}
.wrap div:nth-child(2) {
float: right;
width: 100px;
height: 200px;
background-color: #39f;
}
.wrap div:nth-child(3) {
float: right;
width: 100px;
height: 100px;
background-color: pink;
}
.wrap div:nth-child(4) {
float: left;
width: 100px;
height: 200px;
background-color: yellow;
}
.wrap div:nth-child(5) {
float: right;
width: 200px;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<div class="wrap">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
<script type="text/javascript"></script>
</body>
</html>