css中颜色的设置形式主要有三种方式:颜色名称、十六进制代码和十进制代码。
在古老的 HTML4 时,颜色名称只有 16 种。
颜色名称 | 十六进制代码 | 十进制代码 | 含义 |
black | #000000 | 0,0,0 | 黑色 |
silver | #c0c0c0 | 192,192,192 | 银色 |
gray | #808080 | 128,128,128 | 灰色 |
white | #ffffff | 255,255,255 | 白色 |
maroon | #800000 | 128,0,0 | 栗色 |
red | #ff0000 | 255,0,0 | 红色 |
purple | #800080 | 128,0,128 | 紫色 |
fuchsia | #ff00ff | 255,0,255 | 紫红 |
green | #008000 | 0,128,0 | 绿色 |
lime | #00ff00 | 0,255,0 | 闪光绿 |
olive | #808000 | 128,128,0 | 橄榄色 |
yellow | #ffff00 | 255,255,0 | 黄色 |
navy | #000080 | 0,0,128 | 海军蓝 |
blue | #0000ff | 0,0,255 | 蓝色 |
teal | #008080 | 0,128,128 | 水鸭色 |
aqua | #00ffff | 0,255,255 | 浅绿色 |
当然,目前颜色名称远远不止这些,可以搜索更多的 HTML 颜色表或 CSS 颜色表查阅。 这里提供一些页面如下:
http://xh.5156edu.com/page/z1015m9220j18754.html
http://finle.me/colors.html
http://www.w3school.com.cn/tags/html_ref_colornames.asp
1.颜色名称形式
p { color: red;}
2.十六进制形式
p { color: #ff0000; /*可简写成:f00*/}
补充:十六进制可以使用简写形式,其要求是从头开始,字符两两一组,且组内字符相同,如上所示。(像#8000080就不可以)
3.十进制形式
十进制表示方法就比较多样化,有四种方案:
函数 | 说明 | 实例 |
rgb(r,g,b) | 用 RGB 模型表示颜色 | rgb(0,128,128) |
rgba(r,g,b,a) | 同上,a 表示透明度 0~1 之间 | rgba(0,128,128,0.5) |
hsl(h,s,l) | 用 HSL 模型(色相、饱和度 和透明度)来表示颜色 | hsl(120,100%,30%) |
hsla(h,s,l,a) | 同上, a 表示透明度 0~1 之间 | hsla(120,100%,30%,0.5) |
p { color: rgb(112, 128, 114); color: rgba(0, 128, 128, 0.5); color: hsl(120, 100%, 30%); color: hsla(120, 100%, 30%, 0.5);}
目前又有一个疑问,这些值从哪里获取。除了颜色表之外,想要微调自己的颜色值。我们可以使用 photoshop 等平面设计软件的调色板获取相应的值。

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
