码迷,mamicode.com
首页 > Web开发 > 详细

防止网页中的背景图片被另存为

时间:2014-10-21 10:30:02      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:div背景

防止网页中的背景图片被另存为,可以用下述办法:

先建A层,在样式里为A层设好背景图,然后在A层里设B层,并且把B层大小和A层设成一样,这样A层的背景就不能被另存为。

<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>示例</title>
<style>

body{padding:0px; margin:0px;}
#content{width:1419px; height:3795px; background:url(img.jpg) no-repeat center center; margin:0px auto;}
#content .c_con{width:1419px; height:3795px;}

</style>
</head>

<body>
<div id="content">
<div class="c_con"></div>
</div>
</body>
</html>

防止网页中的背景图片被另存为

标签:div背景

原文地址:http://net5x.blog.51cto.com/7900145/1566149

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!