Summary
The <color>
CSS data type denotes a color in the sRGB color space. A color can be described in any of these ways:
- using a keyword
- using the RGB cubic-coordinate system (via the #-hexadecimal or the
rgb()
andrgba()
functional notations) - using the HSL cylindrical-coordinate system (via the
hsl()
andhsla()
functional notations)
Note that the list of accepted color values have been extended as the specification has evolved, culminating with the latest CSS3 colors.
Associated with the color in the sRGB space, a <color>
value also consists of an alpha-channel coordinate, transparency value, indicating how the color should composite with its background color.
Though CSS color values are precisely defined, they may appear differently on different output devices. Most of them are not calibrated, and some browsers do not support output devices' color profile. Without these, color rendering may vary a lot.
Interpolation
Values of the <color>
CSS data type can be interpolated in order to perform animations or for creating <gradient>
values. In that case they are interpolated on each of their red, green, blue components, each handled as a real, floating-point number. Note that interpolation of colors happens in the alpha-premultiplied sRGBA color space to prevent unexpected grey colors to appear. In animations, the speed of the interpolation is determined by the timing function associated with the animation.
Values
There are several ways to describe a <color>
value.
Color keywords
Color keywords are case-insensitive identifiers which represent a specific color, e.g. red, blue, brown, lightseagreen
. The name describes the color, though it is mostly artificial. The list of accepted values varied a lot through the different specification:
- CSS Level 1 only accepted 16 basic colors, named the VGA colors as they were taken from the set of displayable colors on VGA graphic cards.
- CSS Level 2 added the
orange
keyword. - From the beginning, browsers accepted other colors, mostly the X11 named colors list as some early browsers were X11 applications, though with a few differences. SVG 1.0 was the first standard to formally define these keywords; CSS Colors Level 3 also formally defined these keywords. They are often referred as the extended color keywords, the X11 colors, the SVG colors.
There are a few caveats to consider when using keywords:
- Except the 16 basic colors which are common with HTML, the others cannot be used in HTML. HTML will convert these unknown values with a specific algorithm which will lead to completely different colors. These keywords should only be used in SVG & CSS.
- Unknown keywords make the CSS property invalid. Invalid properties being ignored, the color will have no effect. This is a different behavior than the one of HTML.
- No keyword-defined colors in CSS have any transparency, they are plain, solid colors.
- Several keywords denote the same colors:
darkgray
/darkgrey
darkslategray
/darkslategrey
dimgray
/dimgrey
lightgray
/lightgrey
lightslategray
/lightslategrey
gray
/grey
slategray
/slategray
- Though the names of the keywords have been taken by the usual X11 color names, the color may diverge from the corresponding system color on X11 system as these are tailored for the specific hardware by the manufacturer .
Specifications | Color | Keyword | RGB cubic coordinates | Live Example | ||
---|---|---|---|---|---|---|
CSS3 | CSS2 | CSS1 | black |
=rgb( 0, 0, 0) |
||
silver |
=rgb(192, 192, 192) |
|||||
gray [*] |
=rgb(128, 128, 128) |
|||||
white |
=rgb(255, 255, 255) |
|||||
maroon |
=rgb(128, 0, 0) |
|||||
red |
=rgb(255, 0, 0) |
|||||
purple |
=rgb(128, 0, 128) |
|||||
fuchsia |
=rgb(255, 0, 255) |
|||||
green |
=rgb( 0, 128, 0) |
|||||
lime |
=rgb( 0, 255, 0) |
|||||
olive |
=rgb(128, 128, 0) |
|||||
yellow |
=rgb(255, 255, 0) |
|||||
navy |
=rgb( 0, 0, 128) |
|||||
blue |
=rgb( 0, 0, 255) |
|||||
teal |
=rgb( 0, 128, 128) |
|||||
aqua |
=rgb( 0, 255, 255) |
|||||
orange |
=rgb(255, 165, 0) |
|||||
aliceblue |
=rgb(240, 248, 255) |
|||||
antiquewhite |
=rgb(250, 235, 215) |
|||||
aquamarine |
=rgb(127, 255, 212) |
|||||
azure |
=rgb(240, 255, 255) |
|||||
beige |
=rgb(245, 245, 220) |
|||||
bisque |
=rgb(255, 228, 196) |
|||||
blanchedalmond |
=rgb(255, 235, 205) |
|||||
blueviolet |
=rgb(138, 43, 226) |
|||||
brown |
=rgb(165, 42, 42) |
|||||
burlywood |
=rgb(222, 184, 135) |
|||||
cadetblue |
=rgb( 95, 158, 160) |
|||||
chartreuse |
=rgb(127, 255, 0) |
|||||
chocolate |
=rgb(210, 105, 30) |
|||||
coral |
=rgb(255, 127, 80) |
|||||
cornflowerblue |
=rgb(100, 149, 237) |
|||||
cornsilk |
=rgb(255, 248, 220) |
|||||
crimson |
=rgb(220, 20, 60) |
|||||
darkblue |
=rgb( 0, 0, 139) |
|||||
darkcyan |
=rgb( 0, 139, 139) |
|||||
darkgoldenrod |
=rgb(184, 134, 11) |
|||||
darkgray [*] |
=rgb(169, 169, 169) |
|||||
darkgreen |
=rgb( 0, 100, 0) |
|||||
darkgrey [*] |
=rgb(169, 169, 169) |
|||||
darkkhaki |
=rgb(189, 183, 107) |
|||||
darkmagenta |
=rgb(139, 0, 139) |
|||||
darkolivegreen |
=rgb( 85, 107, 47) |
|||||
darkorange |
=rgb(255, 140, 0) |
|||||
darkorchid |
=rgb(153, 50, 204) |
|||||
darkred |
=rgb(139, 0, 0) |
|||||
darksalmon |
=rgb(233, 150, 122) |
|||||
darkseagreen |
=rgb(143, 188, 143) |
|||||
darkslateblue |
=rgb( 72, 61, 139) |
|||||
darkslategray [*] |
=rgb( 47, 79, 79) |
|||||
darkslategrey [*] |
=rgb( 47, 79, 79) |
|||||
darkturquoise |
=rgb( 0, 206, 209) |
|||||
darkviolet |
=rgb(148, 0, 211) |
|||||
deeppink |
=rgb(255, 20, 147) |
|||||
deepskyblue |
=rgb( 0, 191, 255) |
|||||
dimgray [*] |
=rgb(105, 105, 105) |
|||||
dimgrey [*] |
=rgb(105, 105, 105) |
|||||
dodgerblue |
=rgb( 30, 144, 255) |
|||||
firebrick |
=rgb(178, 34, 34) |
|||||
floralwhite |
=rgb(255, 250, 240) |
|||||
forestgreen |
=rgb( 34, 139, 34) |
|||||
gainsboro |
=rgb(220, 220, 220) |
|||||
ghostwhite |
=rgb(248, 248, 255) |
|||||
gold |
=rgb(255, 215, 0) |
|||||
goldenrod |
=rgb(218, 165, 32) |
|||||
greenyellow |
=rgb(173, 255, 47) |
|||||
grey |
=rgb(128, 128, 128) |
|||||
honeydew |
=rgb(240, 255, 240) |
|||||
hotpink |
=rgb(255, 105, 180) |
|||||
indianred |
=rgb(205, 92, 92) |
|||||
indigo |
=rgb( 75, 0, 130) |
|||||
ivory |
=rgb(255, 255, 240) |
|||||
khaki |
=rgb(240, 230, 140) |
|||||
lavender |
=rgb(230, 230, 250) |
|||||
lavenderblush |
=rgb(255, 240, 245) |
|||||
lawngreen |
=rgb(124, 252, 0) |
|||||
lemonchiffon |
=rgb(255, 250, 205) |
|||||
lightblue |
=rgb(173, 216, 230) |
|||||
lightcoral |
=rgb(240, 128, 128) |
|||||
lightcyan |
=rgb(224, 255, 255) |
|||||
lightgoldenrodyellow |
=rgb(250, 250, 210) |
|||||
lightgray [*] |
=rgb(211, 211, 211) |
|||||
lightgreen |
=rgb(144, 238, 144) |
|||||
lightgrey [*] |
=rgb(211, 211, 211) |
|||||
lightpink |
=rgb(255, 182, 193) |
|||||
lightsalmon |
=rgb(255, 160, 122) |
|||||
lightseagreen |
=rgb( 32, 178, 170) |
|||||
lightskyblue |
=rgb(135, 206, 250) |
|||||
lightslategray [*] |
=rgb(119, 136, 153) |
|||||
lightslategrey [*] |
=rgb(119, 136, 153) |
|||||
lightsteelblue |
=rgb(176, 196, 222) |
|||||
lightyellow |
=rgb(255, 255, 224) |
|||||
limegreen |
=rgb( 50, 205, 50) |
|||||
linen |
=rgb(250, 240, 230) |
|||||
mediumaquamarine |
=rgb(102, 205, 170) |
|||||
mediumblue |
=rgb( 0, 0, 205) |
|||||
mediumorchid |
=rgb(186, 85, 211) |
|||||
mediumpurple |
=rgb(147, 112, 219) |
|||||
mediumseagreen |
=rgb( 60, 179, 113) |
|||||
mediumslateblue |
=rgb(123, 104, 238) |
|||||
mediumspringgreen |
=rgb( 0, 250, 154) |
|||||
mediumturquoise |
=rgb( 72, 209, 204) |
|||||
mediumvioletred |
=rgb(199, 21, 133) |
|||||
midnightblue |
=rgb( 25, 25, 112) |
|||||
mintcream |
=rgb(245, 255, 250) |
|||||
mistyrose |
=rgb(255, 228, 225) |
|||||
moccasin |
=rgb(255, 228, 181) |
|||||
navajowhite |
=rgb(255, 222, 173) |
|||||
oldlace |
=rgb(253, 245, 230) |
|||||
olivedrab |
=rgb(107, 142, 35) |
|||||
orangered |
=rgb(255, 69, 0) |
|||||
orchid |
=rgb(218, 112, 214) |
|||||
palegoldenrod |
=rgb(238, 232, 170) |
|||||
palegreen |
=rgb(152, 251, 152) |
|||||
paleturquoise |
=rgb(175, 238, 238) |
|||||
palevioletred |
=rgb(219, 112, 147) |
|||||
papayawhip |
=rgb(255, 239, 213) |
|||||
peachpuff |
=rgb(255, 218, 185) |
|||||
peru |
=rgb(205, 133, 63) |
|||||
pink |
=rgb(255, 192, 203) |
|||||
plum |
=rgb(221, 160, 221) |
|||||
powderblue |
=rgb(176, 224, 230) |
|||||
rosybrown |
=rgb(188, 143, 143) |
|||||
royalblue |
=rgb( 65, 105, 225) |
|||||
saddlebrown |
=rgb(139, 69, 19) |
|||||
salmon |
=rgb(250, 128, 114) |
|||||
sandybrown |
=rgb(244, 164, 96) |
|||||
seagreen |
=rgb( 46, 139, 87) |
|||||
seashell |
=rgb(255, 245, 238) |
|||||
sienna |
=rgb(160, 82, 45) |
|||||
skyblue |
=rgb(135, 206, 235) |
|||||
slateblue |
=rgb(106, 90, 205) |
|||||
slategray [*] |
=rgb(112, 128, 144) |
|||||
slategrey [*] |
=rgb(112, 128, 144) |
|||||
snow |
=rgb(255, 250, 250) |
|||||
springgreen |
=rgb( 0, 255, 127) |
|||||
steelblue |
=rgb( 70, 130, 180) |
|||||
tan |
=rgb(210, 180, 140) |
|||||
thistle |
=rgb(216, 191, 216) |
|||||
tomato |
=rgb(255, 99, 71) |
|||||
turquoise |
=rgb( 64, 224, 208) |
|||||
violet |
=rgb(238, 130, 238) |
|||||
wheat |
=rgb(245, 222, 179) |
|||||
whitesmoke |
=rgb(245, 245, 245) |
|||||
yellowgreen |
=rgb(154, 205, 50) |
transparent
keyword
The transparent
keyword represents a fully transparent color, i.e. the color seen will be the background color. Technically, it is a black with alpha channel at its maximum and is a shortcut for rgba(0,0,0,0)
.
The
transparent
keyword wasn't a true color in CSS Level 2 (Revision 1). It was a specific keyword that could be used in place of a regular <color>
value on two CSS properties: background
and border
. It was essentially added to allow to override an inherited solid colors.With the support of opacity through alpha channels,
transparent
was redefined as a true color in CSS Colors Level 3 allowing its use in any place where a <color>
value is required, like the color
property.[**]currentColor
keyword
The currentColor
keyword represents the calculated value of the element's color
property. It allows to make the color properties inherited by properties or child's element properties that do not inherit it by default.
It can also be used on properties that inherit the calculated value of the element's color
property and will be equivalent to the inherit
keyword on these elements, if any.
Live example
The color of the line (a color-filled div) adapts to the color of its color
property, inherited from its parent
<div style="color:darkred"> The color of this text is the same as the one of the line: <div style="background:currentcolor; height:1px"></div> Some more text. </div>
<div style="color:blue"> The color of this text is the same as the one of the line: <div style="background:currentcolor; height:1px"></div> Some more text. </div>
rgb()
Colors can be defined using the red-green-blue (RGB) model in two ways:
- Hexadecimal notation
#RRGGBB
and#RGB
-
- "
#
", followed by six hexadecimal characters (0-9, A-F). - "
#
", followed by three hexadecimal characters (0-9, A-F).
#RGB
) and the six-digit form (#RRGGBB
) are equal.
For example,#f03
and#ff0033
represent the same color. - "
- Functional Notation
rgb(R,G,B)
- "
rgb
", followed by three<integer>
or three<percentage>
values.
The integer number 255 corresponds to 100%, and to F or FF in the hexadecimal notation.
/* These examples all specify the same RGB color: */ #f03 #F03 #ff0033 #FF0033 rgb(255,0,51) rgb(255, 0, 51)rgb(255, 0, 51.2)/* ERROR! Don't use fractions, use integers */ rgb(100%,0%,20%) rgb(100%, 0%, 20%)rgb(100%, 0, 20%)/* ERROR! Don't mix up integer and percentage notation */
hsl()
Colors also can be defined the Hue-saturation-lightness model (HSL) using the hsl()
functional notation. The advantage of HSL over RGB is that it is far more intuitive: you can guess at the colors you want, and then tweak. It is also easier to create sets of matching colors (by keeping the hue the same and varying the lightness/darkness, and saturation).
Hue is represented as an angle of the color circle (i.e. the rainbow represented in a circle). This angle is given as a unitless <number>
. By definition red=0=360, and the other colors are spread around the circle, so green=120, blue=240, etc. As an angle, it implicitly wraps around such that -120=240 and 480=120.
Saturation and lightness are represented as percentages.
100%
is full saturation, and0%
is a shade of grey.
100%
lightness is white, 0%
lightness is black, and 50%
lightness is "normal".
hsl(0, 100%,50%) /* red */ hsl(30, 100%,50%) hsl(60, 100%,50%) hsl(90, 100%,50%) hsl(120,100%,50%) /* green */ hsl(150,100%,50%) hsl(180,100%,50%) hsl(210,100%,50%) hsl(240,100%,50%) /* blue */ hsl(270,100%,50%) hsl(300,100%,50%) hsl(330,100%,50%) hsl(360,100%,50%) /* red */ hsl(120,100%,25%) /* dark green */ hsl(120,100%,50%) /* green */ hsl(120,100%,75%) /* light green */ hsl(120,100%,50%) /* green */ hsl(120, 67%,50%) hsl(120, 33%,50%) hsl(120, 0%,50%) hsl(120, 60%,70%) /* pastel green */
rgba()
Colors can be defined in the Red-green-blue-alpha model (RGBa) using the rgba()
functional notation. RGBa extends the RGB color model to include the alpha channel, allowing specification of the opacity of a color.
a means opacity: 0=transparent; 1=opaque;
rgba(255,0,0,0.1) /* 10% opaque red */ rgba(255,0,0,0.4) /* 40% opaque red */ rgba(255,0,0,0.7) /* 70% opaque red */ rgba(255,0,0, 1) /* full opaque red */
hsla()
Colors can be defined in the hue-saturation-lightness-alpha model (HSLa) using the hsla()
functional notation. HSLa extends the HSL color model to include the alpha channel, allowing specification of the opacity of a color.
a means opacity: 0=transparent; 1=opaque;
hsla(240,100%,50%,0.05) /* 5% opaque blue */ hsla(240,100%,50%, 0.4) /* 40% opaque blue */ hsla(240,100%,50%, 0.7) /* 70% opaque blue */ hsla(240,100%,50%, 1) /* full opaque blue */
System Colors
Not all system colors are supported on all systems. for use on public web pages.
- ActiveBorder
- Active window border.
- ActiveCaption
- Active window caption. Should be used with CaptionText foreground color.
- AppWorkspace
- Background color of multiple document interface.
- Background
- Desktop background.
- ButtonFace
- Face background color for 3-D elements that appear 3-D due to one layer of surrounding border. Should be used with ButtonText foreground color.
- ButtonHighlight
- The color of the border facing the light source for 3-D elements that appear 3-D due to one layer of surrounding border.
- ButtonShadow
- The color of the border away from the light source for 3-D elements that appear 3-D due to one layer of surrounding border.
- ButtonText
- Text on push buttons. Should be used with ButtonFace or ThreeDFace background color.
- CaptionText
- Text in caption, size box, and scrollbar arrow box. Should be used with ActiveCaption background color.
- GrayText
- Grayed (disabled) text.
- Highlight
- Item(s) selected in a control. Should be used with HighlightText foreground color.
- HighlightText
- Text of item(s) selected in a control. Should be used with Highlight background color.
- InactiveBorder
- Inactive window border.
- InactiveCaption
- Inactive window caption. Should be used with InactiveCaptionText foreground color.
- InactiveCaptionText
- Color of text in an inactive caption. Should be used with InactiveCaption background color.
- InfoBackground
- Background color for tooltip controls. Should be used with InfoText foreground color.
- InfoText
- Text color for tooltip controls. Should be used with InfoBackground background color.
- Menu
- Menu background. Should be used with MenuText or -moz-MenuBarText foreground color.
- MenuText
- Text in menus. Should be used with Menu background color.
- Scrollbar
- Scroll bar gray area.
- ThreeDDarkShadow
- The color of the darker (generally outer) of the two borders away from the light source for 3-D elements that appear 3-D due to two
concentric layers of surrounding border. - ThreeDFace
- The face background color for 3-D elements that appear 3-D due to two concentric layers of surrounding border. Should be used with ButtonText foreground color.
- ThreeDHighlight
- The color of the lighter (generally outer) of the two borders facing the light source for 3-D elements that appear 3-D due to two
concentric layers of surrounding border. - ThreeDLightShadow
- The color of the darker (generally inner) of the two borders facing the light source for 3-D elements that appear 3-D due to two
concentric layers of surrounding border. - ThreeDShadow
- The color of the lighter (generally inner) of the two borders away from the light source for 3-D elements that appear 3-D due to two
concentric layers of surrounding border. - Window
- Window background. Should be used with WindowText foreground color.
- WindowFrame
- Window frame.
- WindowText
- Text in windows. Should be used with Window background color.
Mozilla System Color Extensions
- -moz-ButtonDefault
- The border color that goes around buttons that represent the default action for a dialog box.
- -moz-ButtonHoverFace
- The background color of a button that the mouse pointer is over (which would be ThreeDFace or ButtonFace when the mouse pointer is not over it). Should be used with the -moz-ButtonHoverText foreground color.
- -moz-ButtonHoverText
- The text color of a button that the mouse pointer is over (which would be ButtonText when the mouse pointer is not over it). Should be used with the -moz-ButtonHoverFace background color.
- -moz-CellHighlight
- Background color for selected item in a tree widget. Should be used with -moz-CellHighlightText foreground color. See also -moz-html-CellHighlight.
- -moz-CellHighlightText
- Text color for a selected item in a tree. Should be used with -moz-CellHighlight background color. See also -moz-html-CellHighlightText.
- -moz-Combobox
- Background color for comboboxes. Should be used with -moz-ComboboxText foreground color. In versions prior to 1.9.2, use -moz-Field instead.
- -moz-ComboboxText
- Background Text color for comboboxes. Should be used with -moz-ComboboxText foreground color. In versions prior to 1.9.2, use -moz-FieldText instead.
- -moz-Dialog
- Background color for dialog boxes. Should be used with -moz-DialogText foreground color.
- -moz-DialogText
- Text color for dialog boxes. Should be used with -moz-Dialog background color.
- -moz-dragtargetzone
- -moz-EvenTreeRow
- Background color for even-numbered rows in a tree. Should be used with -moz-FieldText foreground color. In Gecko versions prior to 1.9, use -moz-Field. See also -moz-OddTreeRow.
- -moz-Field
- textfield background color. Should be used with -moz-FieldText foreground color.
- -moz-FieldText
- textfield foreground color. Should be used with -moz-Field, -moz-EvenTreeRow, or -moz-OddTreeRow background colors.
- -moz-html-CellHighlight
- Background color for highlighted item in HTML select. Should be used with -moz-html-CellHighlightText foreground color. Prior to Gecko 1.9, use -moz-CellHighlight.
- -moz-html-CellHighlightText
- Background color for highlighted item in HTML select. Should be used with -moz-html-CellHighlight background color. Prior to Gecko 1.9, use -moz-CellHighlightText.
- -moz-mac-accentdarkestshadow
- -moz-mac-accentdarkshadow
- -moz-mac-accentface
- -moz-mac-accentlightesthighlight
- -moz-mac-accentlightshadow
- -moz-mac-accentregularhighlight
- -moz-mac-accentregularshadow
- -moz-mac-chrome-active
- -moz-mac-chrome-inactive
- -moz-mac-focusring
- -moz-mac-menuselect
- -moz-mac-menushadow
- -moz-mac-menutextselect
- -moz-MenuHover
- Background color for hovered menu item. Often similar to Highlight. Should be used with -moz-MenuHoverText or -moz-MenuBarHoverText foreground color.
- -moz-MenuHoverText
- Foreground color for hovered menu item. Often similar to HighlightText. Should be used with -moz-MenuHover background color.
- -moz-MenuBarText
- Foreground color for text in menu bars. Often similar to MenuText. Should be used on top of Menu background.
- -moz-MenuBarHoverText
- Foreground color for hovered text in menu bars. Often similar to -moz-MenuHoverText. Should be used on top of -moz-MenuHover background.
- -moz-nativehyperlinktext
- default platform hyperlink color
- -moz-OddTreeRow
- Background color for odd-numbered rows in a tree. Should be used with -moz-FieldText foreground color. In Gecko versions prior to 1.9, use -moz-Field. See also -moz-EvenTreeRow.
- -moz-win-communicationstext
- Should be used for text in objects with appearance:-moz-win-communications-toolbox.
- -moz-win-mediatext
- Should be used for text in objects with appearance:-moz-win-media-toolbox.
Mozilla Color Preference Extensions
- -moz-activehyperlinktext
- User's preference for text color of active links. Should be used against default document background.
- -moz-default-background-color
- User's preference for document background-color.
- -moz-default-color
- User's preference for text color.
- -moz-hyperlinktext
- User's preference for text color of unvisited links. Should be used against default document background.
- -moz-visitedhyperlinktext
- User's preference for text color of visited links. Should be used against default document background.
Specifications
Specification | Status | Comment |
---|---|---|
CSS Color Module Level 3 The definition of '<color>' in that specification. |
Recommendation | Deprecated system-colors; added SVG colors; added rgba() , hsl() , hsla() functional notation. |
CSS Level 2 (Revision 1) The definition of '<color>' in that specification. |
Recommendation | Added the orange color and the system-colors. |
CSS Level 1 The definition of '<color>' in that specification. |
Recommendation |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
keywords colors | 1.0 | 1.0 (1.0) | 3.0 [*] | 3.5 | 1.0 (85) |
#RRGGBB | #RGB |
1.0 | 1.0 (1.0) | 3.0 | 3.5 | 1.0 (85) |
rgb() |
1.0 | 1.0 (1.0) | 4.0 | 3.5 | 1.0 (85) |
hsl() |
1.0 | 1.0 (1.5) | 9.0 | 9.5 | 3.1 (525) |
rgba() |
1.0 | 3.0 (1.9) | 9.0 | 10.0 | 3.1 (525) |
hsla() |
1.0 | 3.0 (1.9) | 9.0 | 10.0 | 3.1 (525) |
currentColor |
1.0 | 1.5 (1.8) | 9.0 | 9.5 | 4.0 (528) |
transparent |
1.0 | 3.0 (1.9) | 9.0 [**] | 10.0 | 3.1 (525) |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile (WebKit) |
---|---|---|---|---|---|
Basic support | ? | ? | ? | ? | ? |
rgba() | ? | ? | ? | ? | 5.1(534.46) (maybe earlier) |
[**] IE 7-8 supports transparent only for background
and border
. color:transparent
is drawn black in IE. IE6 renders transparent borders as black, as well.
See also
- The
opacity
property, allowing to define the transparency of color at the element level. - The
color
,background-color
,border-color
,outline-color
,text-shadow
,box-shadow
properties. - CSS Reference index