You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<style>
.container {
display: flex;
flex-wrap: wrap;
}

.box {
width: 100%;
padding: 20px;
box-sizing: border-box;
background-color: #f0f0f0;
margin-bottom: 20px;
}

@media (min-width: 768px) {


.box {
width: 50%;
}
}

@media (min-width: 1024px) {


.box {
width: 33.33%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="box">Caja 1</div>
<div class="box">Caja 2</div>
<div class="box">Caja 3</div>
<div class="box">Caja 4</div>
<div class="box">Caja 5</div>
<div class="box">Caja 6</div>
</div>
</body>
</html>

You might also like