学习网考试学习资料

Gzu521.com

网页中背景样式表的应用

HTML教程   点击:次   发布时间:2005-12-2   【字体: 】   来源:chinahtml
GZU521.COM学习网
1.重复背景.
<!doctype html public "-//w3c//dtd html 4.0//en">
<html>
  <head>
    <title>setting the canvas background</title>
    <style type="text/CSS">
       body { background: url("http://style.com/marble.png") }
    </style>
  </head>
  <body>
    <p>my background is marble.
  </body>
</html>
2.重复背景.
body { background-image: url("marble.gif") }
p { background-image: none }
 
3.在x或y方向上重复
 
body { 
  background: white url("pendant.gif");
  background-repeat: repeat-y;
  background-position: center;
}
 
4.在x或y方向上重复时当拖动滚动条时,定位不移动.
 
body { 
  background: red url("pendant.gif");
  background-repeat: repeat-y;
  background-attachment: fixed;
}

责任编辑:gzu521

网页设计分类
HTML教程
CSS教程
Javascript教程
Dreamweaver教程
FrontPages教程
FireWorks教程
Flash教程
PhotoShop教程
建站知识
分类推荐信息
更多...
大类最新文章
更多...