Hey there! I'm currently using Bootstrap to design an application and I've got the entire form inside a container. However, as I add more child elements within the container div, I would like the parent div to expand automatically to show all the child divs. Here's an example:
<div class="container">
<div class="form-control">
......
........
.........
</div>
</div>
On my page, I'm experiencing an issue where some of the child <div>
s aren't showing up in the browser. Can anyone suggest what attribute I can include to make the <div class="container" >
accommodate all the elements? I tried using overflow:auto
but it didn't work.