|
Posted by Toby Inkster on 02/18/06 09:30
windandwaves wrote:
> opacity:.50; filter: alpha(opacity=50); -moz-opacity: 0.50; margin: 0px;
I'm not entirely sure how the margin effects opacity, but this should do
the trick:
..translucent50
{
opacity: 0.5; /* CSS 3, Moz, Safari, Konq, Opera 9 */
filter: alpha(opacity=50); /* Internet Explorer 5.5+ */
-moz-opacity: 0.5; /* Older Moz */
-khtml-opacity: 0.5; /* Older Safari, Older Konqueror */
}
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
[Back to original message]
|