background-position属性设置背图像位置
实例代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
body{
background-image:url(img/tree.png);
background-repeat:no-repeat;
background-position:right top;
margin-right:200px;
}
</style>
</head>
<body>
<h1>设置背景图像位置</h1>
<p>这个图像在网页的右边。</p>
<p>我们为这个图像添加了外边距,这样就不会干扰到文本</p>
</body>
</html>
运行效果:
评论