发布网友 发布时间:2022-04-23 15:44
共4个回答
热心网友 时间:2022-04-24 16:49
background:url(../images/bg.gif); 默认就是平铺不用设置,除非你的内容页面没有把高度撑开
热心网友 时间:2022-04-24 18:07
直接点击dreamweaver下栏的那个“页面属性”里面可以设置背景图片,
热心网友 时间:2022-04-24 19:41
试试这个
<style type="text/css"> body { background: url('photo.gif') no-repeat fixed center; } </style>
热心网友 时间:2022-04-24 21:33
<html>
<head>
<style type="text/css">
*{margin:0 ; padding:0;}
.box{widht:980px; heigth:auto; overflow:hidden; background:背景图片纵向重复;margin:0 auto;}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>