<html>
<head>
<title>设置背景图像位置</title>
<style type="text/css">
.box
{
height:70px;
margin-top:10px;
border:1px solid red;
background-image:url("photo.gif");
background-repeat:no-repeat;
}
#id1
{
background-position:top right;
}
#id2
{
background-position:bottom center;
}
#id3
{
background-position:center center;
}
#id4
{
background-position:left 50%;
}
#id5
{
background-position:30px 20%;
}
</style>
</head>
<body>
<div class="box" id="id1"></div>
<div class="box" id="id2"></div>
<div class="box" id="id3"></div>
<div class="box" id="id4"></div>
<div class="box" id="id5"></div>
</body>
</html>
background-position的用法
最新推荐文章于 2024-09-23 11:30:11 发布