<head>
<meta charset="utf-8" />
<style>
/*
背景属性
|属性|说明|
|background-size|背景大小,支持大小调整|
|background-image|背景图片,支持多背景|
*/
div {
width: 106px;
height: 2000px;
background: url(./img/bg_flower.gif) no-repeat, url(./img/bg_flower_multi.gif) no-repeat;
/*
background-size: 100% 100%;
background-size: cover;
*/
background-size: contain;
}
</style>
</head>
<body>
<div>
</div>
</body>
近期评论