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.
inline-block
W
It is due to the white-space and line break in your HTML markup which causes this issue. There are two options to resolve the "problem": 1. remove the line breaks and white-space from your code 2. set the font-size of the parent element to '0'
font-size
Additionally have you set box-sizing: border-box?
box-sizing: border-box