青少年情感性精神障碍:如何制作网页背景?用什么工具制作?

来源:百度文库 编辑:杭州交通信息网 时间:2024/05/09 15:34:55

先用制图软件:photoshop或者firewords类似的做一个你想要的背景~
之后就用dreamweaver或frontpage制作背景~因为dw或fp是可见即可得的软件,所以用这些比较容易上手~
或者你有了图,和网页的话,你也可以在网页的代码上加上一些定义的代码:

这个是加在网页代码里的,看得明就好
语法:

background-repeat : repeat | no-repeat | repeat-x | repeat-y

参数:

repeat : 背景图像在纵向和横向上平铺
no-repeat : 背景图像不平铺
repeat-x : 背景图像在横向上平铺
repeat-y : 背景图像在纵向平铺

示例:

menu { background: url("images/aardvark.gif"); background-repeat: repeat-y; }
p { background: url("images/aardvark.gif"); background-repeat: no-repeat; }