这个实例我们利用background-image属性为p元素添加背景图像。
实例代码
<!doctype html>
<html>
<meta charset="utf-8">
<head>
<style>
p{
background-image:url(img/paper.jpg);
width:300px;
}
</style>
</head>
<body>
<h1>为p元素背景图像</h1>
<h1>Hello World!</h1>
<p>此段落以图像为背景。</p>
</body>
</html>
运行效果:
评论