43 lines
708 B
HTML
43 lines
708 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>float</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
.box-1,
|
|
.box-2,
|
|
.box-3 {
|
|
float: left;
|
|
}
|
|
.box-1 {
|
|
width: 200px;
|
|
height: 400px;
|
|
background: red;
|
|
}
|
|
.box-2 {
|
|
width: 400px;
|
|
height: 400px;
|
|
background: yellow;
|
|
}
|
|
.box-3 {
|
|
width: 200px;
|
|
height: 400px;
|
|
background: black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="box-1"></div>
|
|
<div class="box-2"></div>
|
|
<div class="box-3"></div>
|
|
|
|
|
|
|
|
</body>
|
|
</html> |