1
Since I don’t want to define the height of the container div, because I want it to increase dynamically according to the content?
<div class="conteiner">
<div class="esquerda">
<!--Esta div não terá conteúdo e seguira a altura da div conteiner(maior que o viewport).-->
</div>
<div class="conteúdo">
<p>Aqui vai o conteúdo. Esta div não terá altura fixa.</p>
</div>
<div class="direita">
<!--Esta div não terá conteúdo e seguira a altura da div conteiner (maior que o viewport).-->
</div>
</div>
The mentioned div has no internal content. Only the container div has.
– Harison
The aforementioned div has no internal content. Only the container div has What I put in the contents div increases the size of the container div, I would just like to div them . left and . right follow this. All the answers I found searching talk about increasing up to 100% of the viewport.
– Harison