国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

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 頁(yè)!</h1> <p>你好世界!這是來(lái)自 php中文網(wǎng)的實(shí)例。</p> </body> </html>
submitReset Code