<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>背景图片设置</title>
<style type="text/css">
div{
width: 210px;
height: 60px;
line-height: 60px;
background-color: red;
background-image: url(51zxw.png);
/*background-image: none;*/
}
</style>
</head>
<body>
<!-背景图片:-->
<!-background-image: url(图片路径)-->
<!-1.图片路径 :相对路径 或 绝对路径-->
<!-2.默认值:none 表示没有背景图片-->
<!-3.背景颜色和背景图片可以同时设置不会产生冲突-->
<div>
我爱学习
</div>
</body>
</html>
画圈的就是背景图片