[thelist] CSS Won't Work in MSIE 5.5

joe stowaway at uklinux.net
Fri Oct 31 04:10:15 CST 2003


Dan Romanchik wrote:

>The style rule for the body isn't
>working. Here's the style rule:
>
>body {
>  background: #ffffff url(images/bg.gif) repeat-x;
>  margin: 0px;
>}
>
>Also not working is a class I set up for the hover over a link in the nav
>bar:
>
>a.nav:hover {
>  margin: 3px;
>}
>
>  
>
hi Dan

you could try using the long-hand way of using the selectors:

body {
  background-color: #ffffff;
  background-image: url(images/bg.gif);
  background-repeat: repeat-x;
  margin: 0px;
}

.nav a:hover {
  margin: 3px;
}

hth

joe




More information about the thelist mailing list