2000多张网页制作背景图片,有需要的朋友可以下来看看。
网页制作背景图片大小如何设置
如果你图片实在太小的话只能以小图片铺满整个页面的哦。
方法:
1、“页面属性”,把背景图片改为你的图片
2、在<head></head>之间加代码:
<style type="text/css">
<!--
body {
background-image: url(图片地址);
}
-->
</style>
设置背景问题:
得用到CSS样式代码,这是最常用,也是最简单的
background-attachment版本:CSS1 兼容性:IE4+ NS6+ 继承性:无
语法:
背景不滚动:
background-attachment : scroll | fixed
参数:
scroll : 背景图像是随对象内容滚动
fixed : 背景图像固定
说明:
设置或检索背景图像是随对象内容滚动还是固定的。
对应的脚本特性为backgroundAttachment。请参阅我编写的其他书目。
示例:
html { background-image: url("anasazi.tif"); background-attachment: fixed; }
背景不平铺(重复):
background-repeat版本:CSS1 兼容性:IE4+ NS4+ 继承性:无
语法:
background-repeat : repeat | no-repeat | repeat-x | repeat-y
参数:
repeat : 背景图像在纵向和横向上平铺
no-repeat : 背景图像不平铺
repeat-x : 背景图像在横向上平铺
repeat-y : 背景图像在纵向平铺
说明:
设置或检索对象的背景图像是否及如何铺排。必须先指定对象的背景图像。
对应的脚本特性为backgroundRepeat。请参阅我编写的其他书目。
示例:
menu { background: url("images/aardvark.gif"); background-repeat: repeat-y; }
p { background: url("images/aardvark.gif"); background-repeat: no-repeat; }