亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Set the background color of the page

css background-color property

Function: The background-color property sets the background color of an element.

Description: The background-color attribute sets a solid color for the element. This color fills the element's content, padding, and border areas, extending to the outer bounds of the element's border (but not the margins). If the border has transparent parts (such as a dotted border), the background color will show through these transparent parts.

Note: The attribute value "inherit" is not supported in any version of Internet Explorer (including IE8).


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> body { background-color:#b0c4de; } </style> </head> <body> <h1>我的 CSS web 頁!</h1> <p>你好世界!這是來自 php中文網(wǎng)的實(shí)例。</p> </body> </html>
submitReset Code