Hi Mike
Thanks for the advise. I've read the thread a few times over now.
So, the solusion being suggested is to use a translucent image to define the background rather than using an ocapity value for the whole div.
Is that right?
I've already tried and rejected using an image because watching it load was ugly in IE. I used a 2x2 pixel gif where half of the pixels where transparent.
I don't know how to make a translucent png. Is it simple?
Would using a png make any difference to the appearance of the loading?
I understand this following question may have been covered in the thread but I found some of the terminology hard to grasp...
Why doesn't this work?
CSS:
Code:
<style>
#container0 {
filter:alpha(opacity=80);
opacity: 0.8;
}
#container1 {
filter:alpha(opacity=100)
opacity: 1;
}
</style>
HTML Code:
<div id="container0">
<div id="container1">
---content---
</div>
</div>
Bookmarks