©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
<color>:指定颜色。
当同时定义了背景颜色和背景图像时,背景图像覆盖在背景颜色之上。
如果设置了 <' background-image '>,同时也建议设置 <' background-color '> 用于当背景图像不可见时保持与文本颜色有一定的对比度。
对应的脚本特性为backgroundColor。
Values | IE | Firefox | Chrome | Safari | Opera | iOS Safari | Android Browser | Android Chrome |
---|---|---|---|---|---|---|---|---|
Basic Support | 6.0+ | 2.0+ | 4.0+ | 3.1+ | 3.5+ | 3.2+ | 2.1+ | 18.0+ |
transparent | ||||||||
RGBA, HSL, HSLA | 6.0-8.0 | |||||||
9.0+ |
<!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta charset="utf-8" /> <title>background-color_CSS参考手册_web前端开发参考手册系列</title> <meta name="author" content="Joy Du(飘零雾雨), dooyoe@gmail.com, www.doyoe.com" /> <style> .test { padding: 10px; border: 1px solid #000; background-color: #808080; } </style> </head> <body> <div class="test">灰色背景</div> </body> </html>
点击 "运行实例" 按钮查看在线实例