Sonozaki Maya
realized seraph
Apparently, my CSS Class Selectors don't work in my Firefox 1.5.0.1, but DO work for my IE 6.0 ... Here's a comparison:
Firefox Version - This has messed up the z-index in my img class selector and my p and div class selector*
IE Version - This is the WORKING one.
*div and p class are both the same, because I thought having a p class selector would work ^^;;
Here was my CSS for my class selectors, in case you were curious. I also referred to some tutorials to check I was doing the right thing. I also validated it... >_> So I have no idea what's wrong. Version number perhaps?
Firefox Version - This has messed up the z-index in my img class selector and my p and div class selector*
IE Version - This is the WORKING one.
*div and p class are both the same, because I thought having a p class selector would work ^^;;
Here was my CSS for my class selectors, in case you were curious. I also referred to some tutorials to check I was doing the right thing. I also validated it... >_> So I have no idea what's wrong. Version number perhaps?
Code:
div.blah { border: double; border-width: medium; padding: 1em; width: 400px; height: 300px; overflow: scroll; }
div.thought { border: dashed; border-width: medium; padding: 1em; width: 400px; height: 300px; overflow: scroll; }
p.blah { border: double; border-width: medium; padding: 1em; width: 400px; height: 300px; overflow: scroll; }
p.thought { border: dashed; border-width: medium; padding: 1em; width: 400px; height: 300px; overflow: scroll; }
img.dies
{
position:absolute;
left:0px;
top:0px;
z-index:-1
}