HTML 中設定網頁背景
HTML 中可以透過下列方法設定網頁背景:
1. 背景色(background-color)
使用background-color
屬性設定均勻背景色。
語法:
<code class="html"><body style="background-color: #cccccc;"></code>
2. 背景圖片(background-image)
##使用background-image 屬性設定背景圖像。
語法:
<code class="html"><body style="background-image: url('background.jpg');"></code>
3. 背景重複(background-repeat)##使用
background-repeat 屬性控制背景影像的重複方式。
<code class="html"><body style="background-image: url('background.jpg'); background-repeat: repeat;"></code>
##使用background-position
屬性控制背景影像的位置。語法:
<code class="html"><body style="background-image: url('background.jpg'); background-position: left top;"></code>5. 背景大小(background-size)
##使用background-size 屬性控制背景圖像的大小。
語法:
<code class="html"><body style="background-image: url('background.jpg'); background-size: 100% 100%;"></code>
6. 背景附件(background-attachment)
使用background-attachment 屬性控制背景圖像是否隨頁面捲動而捲動。
語法:
<code class="html"><body style="background-image: url('background.jpg'); background-attachment: fixed;"></code>
以上是html怎麼做網頁背景的詳細內容。更多資訊請關注PHP中文網其他相關文章!