I have a set of <a> tags with differing rgba background colours but the same alpha. Is it possible to write a single css style that will change only the opacity of the rgba attribute?

A quick example of the code:

 <a href="#"><img src="" /><div class="brown">Link 1</div></a>
 <a href="#"><img src="" /><div class="green">Link 2</div></a> 

And the styles

a {display: block; position: relative}
.brown {position: absolute; bottom: 0; background-color: rgba(118,76,41,.8);}
.green {position: absolute; bottom: 0; background-color: rgba(51,91,11,.8);}

What I would like to do is write a single style that would change the opacity when the <a> is hovered over, yet keep the colour unchanged.

Something like

a:hover .green, a:hover .brown {background-color: rgba(inherit,inherit,inherit,1);}
link|improve this question

80% accept rate
By the way, what are your div elements doing in your a elements? – BoltClock Aug 5 '11 at 21:04
@BoltClock HTML5 allows block-level a elements. – mercator Aug 5 '11 at 21:09
@mercator: Alright. I missed that. – BoltClock Aug 5 '11 at 21:10
@BoltClock It seemed the simplest way to code for the effect, a single a tag as opposed to one around the img and another around the text. The fact that it's supported by HTML 5 is a nice bonus. – Fireflight Aug 12 '11 at 21:36
feedback

6 Answers

up vote 3 down vote accepted

Unfortunately, no, you'll have to specify the red, green and blue values again for each individual class:

a { display: block; position: relative; }

.brown { position: absolute; bottom: 0; background-color: rgba(118, 76, 41, 0.8); }
a:hover .brown { background-color: rgba(118, 76, 41, 1); }

.green { position: absolute; bottom: 0; background-color: rgba(51, 91, 11, 0.8); }
a:hover .green { background-color: rgba(51, 91, 11, 1); }

You can only use the inherit keyword alone as a value for the property, and even then the use of inherit isn't appropriate here.

link|improve this answer
feedback

No, that's not possible.

If you want to use rgba, you must set each value together. There's no way to only change the alpha.

link|improve this answer
feedback

No, it's not possible.

You could try a CSS pre-processor, though, if you want to do this sort of thing.

From what I could see, at least LESS and Sass have functions that can make colors more, or less, transparent.

link|improve this answer
I always forget about SCSS/LESS. Always. Maybe I need to start actually using them. – BoltClock Aug 5 '11 at 21:07
feedback

Why not use :hover and specify a different opacity in the hover class?

a:hover {
     opacity:0.6
}
link|improve this answer
4  
Because that affects the whole element. – BoltClock Aug 5 '11 at 20:51
the background only. duh. – Diodeus Aug 5 '11 at 21:08
No, it affects the text too. – BoltClock Aug 5 '11 at 21:08
feedback

Update: It's not possible to do that unfortunately. You'll need to write two separate selectors of:


a.green:hover {background-color: rgba(118,76,41,1);}
a.brown:hover {background-color: rgba(118,76,41,1);}

According to the W3C, the rgba property doesn't have/support the inherit value.

link|improve this answer
The issue is that inherit isn't a valid function argument. You'll notice it doesn't work with any other CSS function. – BoltClock Aug 5 '11 at 21:03
By function do you mean things like rgba and transitions? Because I know it's supported with quite a few of the properties. – Andrew Peacock Aug 5 '11 at 21:05
Yup, along with url(), attr() etc too. inherit is a property value only. – BoltClock Aug 5 '11 at 21:06
I knew about url() and transitions already. I just wasn't 100% sure on rgba because it's used for colours. Thank you for educating me though :)! – Andrew Peacock Aug 5 '11 at 21:07
feedback

This is about the simplest way; put this in your css stylesheet:

a:hover { color : #c00; } 

done!

link|improve this answer
-- just match the color to something close. opacity does not work in all browsers. – dr. null Aug 5 '11 at 20:54
Your answer has a nice trick, but your comment is totally irrelevant. – BoltClock Aug 5 '11 at 20:58
feedback

Your Answer

 
or
required, but never shown

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