你用一张照片作为背景,调整这个百分比你就明白意思了。
下面是BACKGROUND的完整语法:
语法:
background : background-color || background-image || background-repeat || background-attachment || background-position
参数:
该属性是复合属性。请参阅各参数对应的属性。
说明:
如使用该复合属性定义其单个参数,则其他参数的默认值将无条件覆盖各自对应的单个属性设置。
默认值为:transparent none repeat scroll 0% 0%。
尽管该属性不可继承,但如果未指定,其父对象的背景颜色和背景图将在对象下面显示。
对应的脚本特性为background。
比如这是单独的CSS文件:01.css/*背景图片*/
body{
background:url(......) no-repeat left top
}
在html文件里:
<html>
<head>
<title>背景图片</title>
<link href="........(css文件的url地址)" rel="stylesheet" type="text/css" />
</head>
<body>
主体内容
</body>
</html>