Check out this example of HTML code:
<style type="text/css>
.column {
float: left;
width:33.3%;
}
#container {
text-align: center;
width:100%;
}
.clearfix {
display: inline-block;
}
</style>
<div id="container" class="clearfix">
<div class="column">left</div>
<div class="column">middle</div>
<div class="column">right</div>
</div>
I am puzzled by the gap that seems to appear between the top of the page and the divs containing text in various browsers. I understand that adjusting "top:-y px" could fix it, but I feel like there might be something else causing this issue...