一、多张背景图片

 

二、效果图

三、源代码

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>多张背景合成图片</title>
<style>
body {
      background-color:#ccc;
     }
        .muilt {
width: 623px;
height: 417px;
margin: 200px auto;
background: url(img/bg1.png) left top no-repeat, url(img/bg2.png) right top no-repeat,
url(img/bg3.png) right bottom no-repeat, url(img/bg4.png) left bottom no-repeat,
url(img/bg5.png) center center no-repeat;
            background-color:#fff;

}
</style>
</head>
<body>
<div class="muilt"></div>
</body>
</html>

 

posted on 2018-08-22 10:39  一步一个脚印,一直走着  阅读(521)  评论(0编辑  收藏  举报