39 lines
626 B
HTML
39 lines
626 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>flex</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.main {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.box {
|
|
width: 150px;
|
|
height: 150px;
|
|
background: red;
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
|
|
<div class="main">
|
|
<div class="box">1</div>
|
|
<div class="box">2</div>
|
|
<div class="box">3</div>
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
</html> |