十六进制是一个颜色的6位表示。前两位数字(RR)表示红色值,接下来的两位数字表示绿色值(GG),最后一位表示蓝色值(BB)。
十六进制值可以在任何图形软件中获取,如Adobe Photoshop、Jasc Paintshop Pro甚至Advanced Paint Brush。
每个十六进制代码前面都会有一个井号“#”。以下是十六进制表示法的示例。
要指定十六进制代码,您可以使用大写字母或小写字母。
这是一个示例:
<html>
<head>
<style>
div{
background-color: #00ff00;
padding: 10px;
}
</style>
</head>
<body>
<h3>Hexadecimal code - example</h3>
<p>As the hexadecimal code is #00ff00 the background will appear green.</p>
<div>
This div element has a green background.
</div>
</body>
</html>
CSS颜色-短十六进制代码
这是六位数标记的缩写形式。在这种格式中,每个数字都被复制以求得一个等效的六位数值。例如:#6A7变成#66AA77。
十六进制值可以从任何图形软件中获取,如Adobe Photoshop、Jasc Paintshop Pro,甚至使用高级画笔。
每个短十六进制代码前面都会有一个井号或者#符号。
这是一个例子:
<html>
<head>
<style>
div{
background-color: #00f;
padding: 10px;
color:#fff;
}
</style>
</head>
<body>
<h3>Short Hexadecimal code - example</h3>
<p>As the short hexadecimal code is #00f the background will appear blue.</p>
<div>
This div element has a blue background.
</div>
</body>
</html>