网页中背景样式表的应用

时间:2005-12-02 09:34:12  来源:站长资讯收集整理  作者:佚名
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;
}

文章评论

共有 位CH网友发表了评论 查看完整内容