Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need an on hover semi-transparent div which causes some text to appear over the top of a thumbnail image? Is it possible to do this without using JavaScript and using just Cascading Style Sheet?

share|improve this question

3 Answers

up vote 7 down vote accepted

You can try something like this:

<style type="text/css">
.thumb {position:relative;width:200px;height:20px;}
.thumb:hover .overlay {opacity:0.5;}
.overlay {position:absolute;top:0;left:0;width:200px;height:20px;background:#fff;opacity:0;}
</style>
<div class="thumb">
    <div class="overlay"></div>
    <img src="image.gif" />
</div>
share|improve this answer
Great, thanks for this works great! What about IE? I take it won't work there? :-( – Rob Such Mar 1 '10 at 15:06
2  
Use filter opacity: doctyper.com/archives/200703/cross-browser-opacity – D_N Mar 1 '10 at 15:10
1  
You actually don't really need to use conditional comments for it since the browser will simply ignore the css rule it doesn't understand. A selector like this snipplr.com/view/10094/crossbrowser-opacity should do the trick. – easwee Mar 1 '10 at 15:15

Ok ok I know this is old but i ran into and have something to add about opacity settings

http://deepubalan.com/blog/2010/03/29/rgba-vs-opacity-the-difference-explained/

give that a look over, I find using rgba when ever possible over opacity procuces a much better result, opacity can work funny in different browsers and cause all manner of asthetic problems... just my 2 cents

share|improve this answer

Depending on what you're doing with the thumbnail, you could set the background of the DIV as the image, include the text, and use CSS to toggle the visibility from transparent to solid on hover.

This'd only work cleanly if you have a known-size thumbnail (because it's hard to autosize a div to the size of its background image), but it'll make for a simple solution in your html:

<div class="thumb" style="background-image: url(thumb.jpg);">
     <p>mouseover text</p>
</div>

The important css would be something like this...

div.thumb p { visibility: hidden; }
div.thumb:hover p { visibility: visible; }

Not sure from your question whether the whole div is supposed to be transparent or just the text, but you can apply the relevant CSS at either level.

share|improve this answer
All fine as far as displaying it goes - but you are not caring about semantics here. Using the img tag you can specifly other useful attributes like the alt text, width and height (which will also render faster) and any other behaviours you may need. You are also cutting away users with screen readers since they won't know what exactly they are looking at. – easwee Mar 1 '10 at 15:57
That's why I said "depending on what you're doing," though admittedly I didn't make myself clear enough. My guess from context that the text is more important than the image, in which case this may be a reasonable approach. – Dan Puzey Mar 1 '10 at 16:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.