38 lines
770 B
HTML
38 lines
770 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
float: left;
|
|
}
|
|
.bo1 {
|
|
background: red;
|
|
}
|
|
.bo2 {
|
|
background: blue;
|
|
}
|
|
.bo3 {
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="main">
|
|
<div class="box bo1"></div>
|
|
<div class="box bo2"></div>
|
|
<div class="box bo3"></div>
|
|
</div>
|
|
|
|
<div class="conetnt">
|
|
<p>哈哈哈哈哈哈哈哈哈哈哈哈哈</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |