I am working with the unsemantic fluid grid system and aiming to create a row of divs that are all in line and together cover 100% of the page.
<div class="grid-container">
<div class="grid-parent yy name-strip zz">
<div class="yellow-pink-border mobile-grid-20 xx"></div>
<div class="green-blue-border mobile-grid-40 xx"></div>
<div class="red-yellow-border mobile-grid-15 xx"></div>
<div class="yellow-pink-border mobile-grid-20 xx"></div>
<div class="green-blue-border mobile-grid-5 xx"></div>
</div>
</div>
Calculating it, the total percentage should add up to 100% so why does the last div (green-blue-border mobile-grid-5
) move down to the next line when the browser window is resized, typically around 200px on jsfiddle's result?
Despite following the same breakpoint, I cannot seem to figure out what might be causing this issue.