CSS Opacity
CSS provides an excellent means of adding opacity to any element with the opacity
property. Opacity values must be anywhere from 0 (not visible) and 1 (completely visible). Adding opacity to an element used to be quite a chore -- lots of browser-specific CSS was required:
.opacityElement { /* 50% opacity */
-webkit-opacity: 0.5;
-moz-opacity: 0.5;
filter:alpha(opacity=50);
}
Modern browsers have implemented a very basic CSS opacity
property so the browser-specific code is no longer needed:
.opacityElement { /* 50% opacity */
opacity: 0.5;
}
CSS opacity is great in showing and deminishing focus, and paired with CSS animations and transforms, can be eleganty displayed. Opacity is supported by all major web browsers and can be used today!
It's no secret that Facebook has become a major traffic driver for all types of websites. Nowadays even large corporations steer consumers toward their Facebook pages instead of the corporate websites directly. And of course there are Facebook "Like" and "Recommend" widgets on every website. One...
Sooner or later you'll run across a regular expression. With their cryptic syntax, confusing documentation and massive learning curve, most developers settle for copying and pasting them from StackOverflow and hoping they work. But what if you could decode regular expressions and harness their power? In...
You've probably been to sites like RapidShare and MegaUpload that allow you to download files but make you wait a specified number of seconds before giving you the download link. I've created a similar script but my script allows you to animate the CSS font-size...
Modern browsers are nice in that they allow you to style some odd properties. Heck, one of the most popular posts on this blog is HTML5 Placeholder Styling with CSS, a tiny but useful task. Did you know you can also restyle the textarea resizer in WebKit...
The only drawback with CSS opacity is that the text inside the div is blurred as well. Adding more opacity to the text inside the dic container do not solve the problem.
css-tricks.com doucmented this issue and found a solution to this problem.
For IE 8 that code needs to be changed to:
And to support old 1.x versions of Safari:
See http://blogs.msdn.com/ie/archive/2008/09/08/microsoft-css-vendor-extensions.aspx
Thank you very much! :)
Thanks. Helped a lot ;)
Thanks for the suggestion but this rule can BREAK IE. I used it in conjunction with a large amount of javascript (and jquery) and it apparently caused a memory leak. BEWARE!!!!
So, how exactly do I use this?
.show-50 – How can I apply this to specific tags? If I change it to .opaque-text {css here} will it work, or does that .show-50 part make it work?
Rich, the .show-50 is simply the class name, you can change this to whatever suits you. To implement this you’d use the following HTML:
<div class=”show-50″>Content</div>
Where “Content” is whatever you want in the container. If you changed the CSS to .opaque-text, you’d simply use:
<div class=”opaque-text”>Content</div>
heiy…it’s work for in all my testing browsers (firefox, IE:using IETester,opera,safari windows and chrome). thanx david! :)
This is pretty well documented and used often. It’s a cool feature that deserves attention, but calling it “overlooked for quite some time” is stretching too far in my opinion.
Neat, but does not comply to standards. Using a semi-transparent 1×1 px gif and a little absolute positioning does the trick for me :)
Just tried this on a website i’m building
It worked fine in mozilla firefox, chrome and safari and all varients of IE
However the text inside the container that has opacity also has opacity which is unwanted
Whats more, in IE the clear type effect is remove
It would be good if you had a solution that also tackled that :)
@Search Engine Optimisation:
Whatever is inside the container, just select it with css and set the opacity to 1.0
If you want text to appear and make an image transparent use the above mentioned style in the img tag and not in a surrounding div tag
Content Text Goes Here.
That should take care of your text problems inside the div
ok that didnt show up.. lets try this…just take teh spaces out.
If you want text to appear and make an image transparent use the above mentioned style in the img tag and not in a surrounding div tag
Content Text Goes Here
You could also write the style in your style sheet and add the class to the img tag
[img src=’name.ext’ class=’show-50′ border=’0′ alt=’tool_tip’]
@Tony: Semi-transparent 1×1 gif? Gif does not support alpha transparency. You have to specify which colors will be transparent. Can you provide more insight on how you make a div look dimmed with a gif?
@Tony: Too bad gifs only support boolean transparency.
@Juan Mendes: He’s likely mistaking it for a png, which does work—except for our buddy IE6. But its likely you’d already got a png fix going on so it should be too tricky.
@Tony: Not sure how you’re achieving this but due to the matting on GIFs you cannot achieve alpha transparency. The only way you can achieve true transparency in a fully rendered image is by using 24bit PNG files however this is not support by IE6 (as usual!) without using the (well documented) IE PNG transparency behaviour hack which uses all sorts of gubbings like CSS and javascript… which, if memory serves, also isn’t standards compliant! :)
@Tony: That only works for backgrounds, and it must be a png, because there aren’t semi-transparent gif’s.
If you want to make the text or the images transparent, how do you do it?
You’re right, it doesn’t comply to standards… =(
This code works fine for IE8
how can we solve browser compatibility on css in the ei tester
Setting a background color using rgba is another good solution as it won’t affect children.
Also, if you use opacity for a drop down it may be invisible, but the links still work :(
Someones may encounter with background transparency due to affecting child elements. I found this solution, it may be useful.
http://mron.us/web-development/css3/css-background-transparency-without-affecting-child-elements
input type=”file” do not work!!
Happy New Year,
Having some trouble with my site…did all the adjustments with opacity but on I.E. 7 and older it seems Ok but on the newer ones the navigation hover is darkened…any suggestions? http://www.exerciserx.net
Sincerely,
Craig M
I have a problem occured in IE version 6 and lesser version filter gray color is not happen in this following code so help me the exact code
LoL
All this dancing to support non-compliant M$ browsers.
Solution?
Write code to the standard.
Tell complainers to complain to their browser manufacturer or switch to a standards-compliant browser.
Bwah ha ha.
If you want the background to be transparent and the text or child elements opaque, use rgba background color instead of opacity.
Because rgba background color is kind of new, you can use a semi-transparent PNG as a fallback. As Doug already said transparent PNGs are not supported by IE6. Anyway you can create transparent PNG pixel online. See: http://px64.net
Cheers