--- title: color slug: Web/CSS/color tags: - CSS - CSS 属性 - CSS 文本 - CSS 颜色 - HTML 样式 - HTML 颜色 - Web - color - 参考 - 布局 translation_of: Web/CSS/color ---
color
CSS属性设置颜色值的前景色以及文本装饰,并设置{{cssxref("currentcolor")}}值。currentcolor
可以对其他颜色属性用作不直接的值,比如{{cssxref("border-color")}}。/* 关键词 */ color: currentcolor; /* <named-color>值 */ color: red; color: orange; color: tan; color: rebeccapurple; /* <hex-color>值 */ color: #090; color: #009900; color: #090a; color: #009900aa; /* <rgb()>值 */ color: rgb(34, 12, 64, 0.6); color: rgba(34, 12, 64, 0.6); color: rgb(34 12 64 / 0.6); color: rgba(34 12 64 / 0.3); color: rgb(34.0 12 64 / 60%); color: rgba(34.6 12 64 / 30%); /* <hsl()>值 */ color: hsl(30, 100%, 50%, 0.6); color: hsla(30, 100%, 50%, 0.6); color: hsl(30 100% 50% / 0.6); color: hsla(30 100% 50% / 0.6); color: hsl(30.0 100% 50% / 60%); color: hsla(30.2 100% 50% / 60%); /* 全局值 */ color: inherit; color: initial; color: unset;
color
属性被指定为一个单个的 {{cssxref("<color>")}}值。
注意值必须是规则的 {{cssxref("color")}}。它不可以是{{cssxref("<gradient>")}}(实际上为{{cssxref("<image>")}}的一部分)。
It is important to ensure that the contrast ratio between the color of the text and the background the text is placed over is high enough that people experiencing low vision conditions will be able to read the content of the page.
Color contrast ratio is determined by comparing the luminosity of the text and background color values. In order to meet current Web Content Accessibility Guidelines (WCAG), a ratio of 4.5:1 is required for text content and 3:1 for larger text such as headings. Large text is defined as 18.66px and bold or larger, or 24px or larger.
{{cssinfo}}
以下方式可以使得文本显示为红色:
p { color: red; } p { color: #f00; } p { color: #ff0000; } p { color: rgb(255,0,0); } p { color: rgb(100%, 0%, 0%); } p { color: hsl(0, 100%, 50%); } /* 50%透明 */ p { color: #ff000080; } p { color: rgba(255, 0, 0, 0.5); } p { color: hsla(0, 100%, 50%, 0.5); }
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS4 Colors', '#the-color-property', 'color')}} | {{Spec2('CSS4 Colors')}} | Adds commaless syntaxes for the rgb() , rgba() , hsl() , and hsla() functions. Allows alpha values in rgb() and hsl() , turning rgba() and hsla() into (deprecated) aliases for them.Adds color keyword rebeccapurple .Adds 4- and 8-digit hex color values, where the last digit(s) represents the alpha value. Adds hwb() , device-cmyk() , and color() functions. |
{{SpecName('CSS3 Colors', '#color', 'color')}} | {{Spec2('CSS3 Colors')}} | Deprecates system-colors. Adds SVG colors. Adds the rgba() , hsl() , and hsla() functions. |
{{SpecName('CSS2.1', 'colors.html#colors', 'color')}} | {{Spec2('CSS2.1')}} | Adds the orange color and the system colors. |
{{SpecName('CSS1', '#color', 'color')}} | {{Spec2('CSS1')}} | Initial definition. |
{{Compat("css.properties.color")}}