首頁  >  文章  >  web前端  >  html怎麼做網頁背景

html怎麼做網頁背景

下次还敢
下次还敢原創
2024-04-05 11:51:171269瀏覽

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>

4. 背景位置(background-position)

##使用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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn