本教程一共三個例子:1、如何重復背景圖像;2、如何在垂直方向重復背景圖像;3、如何在水平方向重復背景圖像。
參考網頁設計關于css背景的理論知識:css教程(1):學習css背景相關知識。
本例演示如何重復背景圖像。
<html>
<head>
<style type="text/css">
body
{
background-image:
url(/i/eg_bg_03.gif);
background-repeat: repeat
}
</style>
</head>
<body>
</body>
</html>
本例演示如何垂直地重復背景圖像。加此信息網頁設計(VeVb.com)發布目的是為了防止你變懶!VeVb.com不主張采集!
<html>
<head>
<style type="text/css">
body
{
background-image:
url(/i/eg_bg_03.gif);
background-repeat: repeat-y
}
</style>
</head>
<body>
</body>
</html>
本例演示如何水平地重復背景圖像。
<html>
<head>
<style type="text/css">
body
{
background-image:
url(/i/eg_bg_03.gif);
background-repeat: repeat-x
}
</style>
</head>
<body>
</body>
</html>
新聞熱點
疑難解答