How do I make the inner elements of ASIDE
stay horizontally on the same line, side by side without breaking when resizing the browser.
CSS
aside{
background-color: #222;
margin-top: 10px;
margin-left: 10px;
width: 100%;
max-width: 1200px;
margin-bottom: 10px;
box-sizing: border-box;
}
aside figure{
float: left;
margin-bottom: 20px;
margin-right: 10px;
}
aside figure img{ /* redimensionar imagem */
max-width: 300px;
width: 100%;
}
HTML
<aside>
<figure>
<a href="#">
<img src="./imagens/praias.png" width="300" height="400">
</a>
</figure>
<figure>
<a href="#">
<img src="./imagens/praias.png" width="300" height="400">
</a>
</figure>
<figure>
<a href="#">
<img src="./imagens/praias.png" width="300" height="400">
</a>
</figure>
<figure>
<a href="#">
<img src="./imagens/praias.png" width="300" height="400">
</a>
</figure>
</aside>