
06-13-2006, 07:57 AM
|
 |
SEO
|
|
Join Date: Feb 2006
Posts: 374

|
|
|
problem with Firefox..
I am trying to set 2 images to their absolute positions using the following CSS code:
<style type="text/css">
img.x
{
position:absolute;
left:80px;
top:10px;
z-index:-1
}
img.y
{
position:absolute;
left:775px;
top:33px;
z-index:-1
}
</style>
when setting the image on the page, I write class="y"..
works perfect on internet explorer.. but the images disappear completely in firefox.. what should I do for absolute positioning ?
|