[Link removed]
Is anyone else experiencing an issue with the columns on a website layout? I have 5 columns set up with each post taking up 20% width. It looks fine in Chrome, but in IE and Firefox, the last column gets pushed below so there are only 4 columns showing. Any ideas on why this might be happening?
.post {
width: 20%;
float: left;
overflow: hidden;
}
<article class="col post">
content here
</article>
<article class="col post">
content here
</article>
<article class="col post">
content here
</article>
....