On Sep 20, 2006, at 1:27 PM, Kim Brooks Wei wrote:

> I'm struggling to understand what's wrong with my page border. It
> adheres to the browser windows on 3 sides [top, lt and rt] but not on
> the bottom, in either Safari or Firefox.
>
> I've tried whatever solutions I could think of but nothing has
> worked. Please give me a hand with this if you can.
>
> http://njlada.com/c/contact.php

There is nothing wrong with your border(s). They are as tall as the  
content requires it, that is how it should be. IE 6 does it wrong, of  
course.

Only the background-color of your <body> paints all over, because you  
don't specify a background colour for <html>

You probably meant to have them fill the window, no matter how much/ 
little content there is.

That is a bit tricky:

html {
        background: #069; /*blue*/
        height:100%;
}
body {
        margin: 0 13px;
        background: #fff576 url(../_img/blue.png) repeat-x bottom;
        min-height:100%
}
use a background image the height you need for the bottom border.




Philippe
---
Philippe Wittenbergh
<http://emps.l-c-n.com>




______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to