What is the Transparent Code For Firefox
Printable View
What is the Transparent Code For Firefox
What, a css code?
he means like in Internet Explorer you can put background="transparent" or whatever.
Does anyone know it
You still havn't explained yourself properly and therefore we cannot give you what you want.
just to make something transparent, firefox actualy uses the proper W3 valid attribute
opacity: 0.8;
1 = opake
0 = invsiable
you can vary the number inbetween say 0.25 would be valid.
like in Internet Explorer you can put background="transparent"
HTML 5.0 supports: IE 5+, Mozilla, Opera and more
If you are using frames:
apply this to the frame: allowTransparency scrolling="yes"
e.g.
Then on the page inside the frame put this in the css of the page (try not to use a refrance for this as it will reduce supportage)Code:<IFRAME
name=iframe src="iframe.htm"
frameBorder=0 width=433 height=324 allowTransparency scrolling="yes">
Code:<STYLE type=text/css>
BODY {
BACKGROUND-COLOR: transparent
}
HTML {
BACKGROUND-COLOR: transparent
}
</STYLE>