How can I create a menu which only its background is transparent? The text should keep opaque (opacity: 1)
If I set
li:hover {
opacity: 0.5
}
The whole list item becomes transparent. How do I fix that?
|
How can I create a menu which only its background is transparent? The text should keep opaque (opacity: 1) If I set
The whole list item becomes transparent. How do I fix that?
| ||||
|
feedback
|
|
There is a new value in CSS3 called "rgba" that allows you to use a transparent color as a background color. For instance:
I'm fairly sure that should work, though I just wrote the code on the spot so it may not. This will, however, give your menu a white-ish tinge to it. If you want to read more about RGBA, though, go here: http://css-tricks.com/rgba-browser-support/ | |||||||||
feedback
|
|
You’ll need to use either a transparent PNG image, or an
Or:
| |||
|
feedback
|
|
I don't think, that's possible, try this example: http://jsfiddle.net/578SV/ | |||
|
feedback
|
|
You can't. The transparency level gets handed down to all child elements. Your options:
| ||||
|
feedback
|