Files
ClassContent/历届学生/fontendsix/每日课程/2021-10-19/box.html
2024-09-27 02:06:13 +08:00

65 lines
1.3 KiB
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_1 {
width: 200px;
height: 200px;
background: red;
/* margin: 10px; 上右下左*/
/* margin: 10px 20px; 上下 左右*/
/* margin: 10px 20px 30px; 上 左右 下 */
/* margin: 10px 20px 30px 40px; */
/* margin-left: 30px;
padding: 10px;
margin-bottom: 30px; */
/* border: 10px solid blue; */
/* border-left: 10px solid blue; */
float: left;
}
.box_2 {
width: 200px;
height: 200px;
background: blue;
float: left;
}
.hahah {
width: 100px;
height: 100px;
background: black;
}
span {
border-right: 1px solid #f5f5f5;
}
</style>
</head>
<body>
<div class="main">
<div class="box_1"></div>
<div class="box_2"></div>
</div>
<div class="hahah"></div>
<!-- <span>测试</span> -->
<!-- 留坑:块和行相互转换 -->
</body>
</html>