Css problem in ff

:book: OOps. Problem. i create one CSS code for the background, body tag, well, i try this in IE and work fine, but in FF not work. The background may valign in bottom, but in firefox the bg-image be aligned in top. this is the css code:


[COLOR=Red]body {
[COLOR=DimGray]    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 0px;
    background-color: #3399CC;
    background-image:url(rodape.jpg);
    background-position:bottom;
    background-repeat:repeat-x;[/COLOR]
}[/COLOR]

Help !

:hugegrin:
See the samples.

use coordinates background-position: 0 0; for top left. You can use %'s too so maybe 0 100% for your problem

Add the following right above your body{} ruleset

html{ height: 100%; }

yea what he said ^^^ I assumed you did that.