Is it possible to define a color in CSS by its name plus an alpha transparency value?
I.e.:
#mytext { color: red 0.5 }
rather than resorting to rgba like
#mytext { color: rgba(255,0,0,0.5) }
|
Is it possible to define a color in CSS by its name plus an alpha transparency value? I.e.:
rather than resorting to rgba like
|
|||
|
|
|
You can achieve the result you want this way:
Note that opacity will affect the whole element, not just the text, so for example, if the #mytext element had a background color, that would also receive the opacity value of 0.5 However, I agree with Dai, using color names instead of hex or rgb codes isn't something you should rely on too much. It's an ugly color palette to work with. |
|||
|
|
|
No. The CSS specification only allows colors to be specified by name, hexadecimal representation of RGB, or using the Ref: http://www.w3.org/TR/CSS2/syndata.html#value-def-color Color-names are less useful now than they were in the days of CSS1.x because the named colors (with the exception of If you want to use color names to improve readability then use comments, like so:
(put the comment after the semi-colon because many CSS editors only preserve comments when they're located outside of property declarations). CSS3 adds more named-colors, including the 24-bit X11 color set, as well as the |
|||
|
|