I have 3 boxes on a page, and I want to place them next to each other. which code should I use? Margin? Padding? Which display? Inline or Block?
.box{
box-sizing: border-box;
width: 350px;
height: 200px;
background-color: rgba(158, 235, 158, 0.151);
border-width: 2px;
border-style: dashed;
border-radius: 7px;
border-color: rgb(13, 54, 31);
}
<div class="box-1"/>
<div class="box-2"/>
<div class="box-3"/>