梦之都
CSS教程
,
background-color
示例
白字黑底
梦之都
CSS教程
,
background-color
示例,定义背景颜色,body的背景使用了绿色,p中背景使用了白色,h1的背景使用了黑色.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS background-color 属性示例</title> <style type="text/css" media="all"> body { background-color:green; } h1 { color:white; background-color:black; } p { color:blue; background-color:white; } </style> </head> <body> <p>梦之都
CSS教程
,<strong>
background-color
</strong>示例</p> <h1>白字黑底</h1> <p>梦之都
CSS教程
,<strong>background-color</strong>示例,定义背景颜色,body的背景使用了绿色,p中背景使用了白色,h1的背景使用了黑色.</p> </body> </html>