DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS詳解 >> 使用CSS固定背景
使用CSS固定背景
編輯:CSS詳解     

使用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>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved