html - Div's appearing different (Firefox vs Internet Explorer) -
i have footer included in register.php
, ( simple registration page. )
the footer includes text section right , error reporting section left.
my issue internet explorer not display code same way firefox does. here examples:
here css left side ( error reporting ):
#errors { float:left; margin-left:4.5%; text-align:left; color:red; }
here css right side ( text area ):
#footer p { text-align:right; margin-right:3%; }
and, here css entire footer:
#footer { width:100%; border-top:1px solid black; bottom:0; color:#838b8b; font-family:verdana; }
this kind of hack, try:
#errors { float:left; margin-left:4.5%; text-align:left; color:red; white-space: nowrap; }
Comments
Post a Comment