jquery - Why is my content spilling past the bottom of the container? -
    it seem if there "max-width" (or having similar effect) set on div somewhere, there isn't, far can tell. yet bottom of container spills out on bottom edge so:     why that, , how can prevent it?   update   what happening here html5 section elements being dynamically (programmatically, via jquery) added tab's content area. pertinent code:   html:   <div id="tabs" class="content-wrapper">     <ul>         <li><a href="#tab-books">books</a></li>         <li><a href="#tab-movies">movies</a></li>         <li><a href="#tab-music">music</a></li>     </ul>     <div id="tab-books">         <select id="bookdropdown">             <option value="pulitzer">pulitzer</option>             <option value="nbcc">national book critics circle</option>             <optio...