Display Inline-Block with Widths as Percent
问题 I'm trying to put 2 sections beside each other using inline-block and widths as a percentage, but it's not filling up the entire width of my window. What I have so far: HTML <section class="left-content"> "Some Code" </section> <section class="main-content"> "Some More Code" </section> CSS .left-content, .right-content { width: 15%; min-width: 150px; padding: 5px; display: inline-block; overflow: hidden; vertical-align: top; } .main-content { width: 85%; min-width: 712px; padding: 10px;