站长论坛

标题: 网页中背景样式表的应用 [打印本页]

作者: tzlink    时间: 2007-9-14 14:03
标题: 网页中背景样式表的应用
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;
}




欢迎光临 站长论坛 (http://www.tzlink.com/bbs/) Powered by Discuz! X3.2