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