Angela French wrote:
> I am trying to figure out why IE (tested in IE 8) won't show my background 
> images.  My style is:
>
> ul#menu li li a:visited  /* sub list links */
> {
>       color:#0096b7;
>       background:url('/images/checkmark.gif') top left no-repeat;
>       background-color:Transparent;
>       padding-left:15px;
> }
>   
Hi,

solution is:
background: transparent url('/images/checkmark.gif') no-repeat top left;

first if you use "background:", then you can't use background-color, 
background-image,
or any other definition, what you used in "background:" definition.
Second: take care of the right order.
"no-repeat" is before "top left"
You can read this on http://www.w3schools.com/css/pr_background.asp

Kata

______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to