WEB开发网
开发学院网页设计DivCss 使用CSS固定背景 阅读

使用CSS固定背景

 2008-08-20 19:28:18 来源:WEB开发网   
核心提示:使用CSS可以固定背景,格式如下:标签名{background-attachment:参数}参数:fixed:页面滚动时,使用CSS固定背景,背景固定;scroll:页面滚动时,背景滚动

使用CSS可以固定背景,格式如下:
标签名{background-attachment:参数}

参数:
fixed:页面滚动时,背景固定;
scroll:页面滚动时,背景滚动。

实例:

<html>
<style type="text/css">
<!--
   p.1{ background-attachment:fixed;  background-repeat:no-repeat;background-image:url(mgc.jpg);font-size:100mm}
   p.2{ background-attachment:scroll;  background-repeat:no-repeat;background-image:url(mgc.jpg);font-size:100mm}
-->
</style>
<head>
   <title>CSS</title>
</head>
<body>

   <p class="1">fixed</p>
   <p class="2">scroll</p>
  
</body>
</html>

Tags:使用 CSS 固定

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接