<!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>배치</title>
<style>
#allBox {
margin: 0 auto;
width: 1000px;
}
#box1 {
width: 500px;
height: 500px;
background-color: #f00;
float: left;
}
#box2 {
width: 500px;
height: 500px;
background-color: #ff0;
float: right;
}
</style>
</head>
<body>
<div id="allBox">
<div id="box1">box1</div>
<div id="box2">box2</div>
</div>
</body>
</html>