i'm having for example 3 divs next to each other,covering all available width in the browser like this
and i want them to stay like this when the window is resized or zoomed in/out
where should i start ?
div {
  position: relative;
  float: left;
  border: 1px solid black;
  width: 100px;
  height: 50px;
  margin: 2px;
}<div></div>
<div></div>
<div></div>

 
    