On Sep 8, 8:23 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> .move
> {
> background-image: url('http://l.yimg.com/a/i/ww/beta/y3.gif');
> position:absolute;
> height:50px;
> width:50px;}
>
> ...however IE does not show the
> div, if i remove the absolute positioning(while in IE or even change
> it to position:relative it works)
>

Make sure to specify a top and left value if your position is set to
absolute.

.move {
  background-image: url('http://l.yimg.com/a/i/ww/beta/y3.gif');
  position:absolute;
  height:50px;
  width:50px;
  left:0;
  top:0
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iGoogle Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Gadgets-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to