为了达到更好的效果再配合cover和center
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<style>标签中,输入css代码:body {background: url(image.jpg) no-repeatbackground-size: 300px}。
3、浏览器运行index.html页面,此时背景图片成功用css等比例缩小到了300px宽度的大小。
可以使用:Background-size属性语法:
background-size :[ <length>| <percentage>|
auto
]{1,2}
|
cover
|
contain
取值:
<length>:
由浮点数字和单位标识符组成的长度值。不可为负值。
<percentage>:
取值为0%到100%之间的值。不可为负值。
说明:
设置背景图片的大小。
指定背景大小,以象素或百分比显示。当指定为百分比时,大小会由所在区域的宽度、高度,以及background-origin的位置决定。还可以通过cover和contain来对图片进行伸缩。
示例代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
<title>Background-size</title>
</head>
<body>
<div style="border: 1px solid #CCCCCCpadding:90px 5px 10pxbackground:url(http://webteam.tencent.com/wp-content/themes/teamblog/img/gg.png) no-repeat -webkit-background-size: 100% 80px-o-background-size: 100% 80px">这里的 <code>background-size: 100% 80px</code>。 背景图片将与DIV一样宽,高为80px。</div>
</body>
</html>