James Eaton wrote:
> In Firefox a centered div on a page will move left or right, depending on 
> whether vertical scroll bars appear in the browser window, while in IE it 
> remains in one place.  Is there a workaround for this in Firefox?
>
> http://zolx.com/provenpropertymanagement/test1.php
>
> http://zolx.com/provenpropertymanagement/test2.php 
>
>
>
>   
You have added the appropriate fix for short-page shift. However, the 
way you have written it is not valid.
You have:
html {
xheight: 100%;
xmargin-bottom: 1px;
}
It should be:
html {
height: 100%;
margin-bottom: 1px;
}
The page test1.php in not valid markup. You have forgotten to close 
#wrapper.
Validate the css [1] and markup [2] frequently while you work. It saves 
a lot headaches.

[1]<http://jigsaw.w3.org/css-validator/>
[2]<http://validator.w3.org/>
Regards,
~dL

-- 
http://chelseacreekstudio.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- 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