HTML:設置背景顏色和圖片

設置背景顏色

<html>
<head>
    <!--
    <style>
    body{
        background-color: #FFC1C1;   方式一設置
    }
    </style>
    -->
</head>
<body style="background-color: #FFC1C1">   <!--方式二設置-->
    <h1>Set the Background</h1>
</body>
</html>

設置本地背景圖片

<html>
<head>
</head>
<body background="image/01.PNG">
    <h1>Set the Background</h1>
</body>
</html>

設置網絡背景圖片

<html>
<head>
</head>
<body style="background-image:url(http://pic4.nipic.com/20090821/2267807_180803075_2.jpg);">
    <h1>Set the Background</h1>
</body>
</html>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章