本教程介紹:1.如何僅顯示一次背景圖像,2.如何放置背景圖像,3.如何使用%來定位背景圖像。
參考破洛洛關於CSS背景的理論知識:CSS教程(1):學習CSS背景相關知識。
本例演示如何僅顯示一次背景圖像。
<html>
<head>
<style type="text/css">
body
{
background-image: url('/i/eg_bg_03.gif');
background-repeat: no-repeat
}
</style>
</head>
<body>
</body>
</html>
本例演示如何在頁面上放置背景圖像。看到本信息說明該文是通過網頁教學(poluoluo.com)整理發布的,請不要刪掉!
<html>
<head>
<style type="text/css">
body
{
background-image:url('/i/eg_bg_03.gif');
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;
}
</style>
</head>
<body>
<body>
<p><b>注釋:</b>為了在 Mozilla 中實現此效果,background-attachment 屬性必須設置為 "fixed"。</p>
</body>
</body>
</html>
本例演示如何使用百分比來在頁面上定位背景圖像。
<html>
<head>
<style type="text/css">
body
{
background-image: url('/i/eg_bg_03.gif');
background-repeat: no-repeat;
background-attachment:fixed;
background-position: 30% 20%;
}
</style>
</head>
<body>
<p><b>注釋:</b>為了在 Mozilla 中實現此效果,background-attachment 屬性必須設置為 "fixed"。</p>
</body>
</html>