Here is a simplified version of my HTML:
<div class="container">
<div class="box1">sample text</div>
<div class="box2">sample text</div>
<div class="box3">sample text</div>
</div>
And this is the CSS I have applied:
* { padding: 0; margin: 0; }
html, body { height: 100%; }
.container { min-height: 100%; }
/* box1, box2, and box3 have float:left and assigned widths. Also set min-height:100%; */
I have tried various solutions but still see a scrollbar. Any suggestions?
Sincerely, Martti Laine