」。"/> 」。">
在html中,可以利用style屬性和「background-repeat」屬性來設定圖片不平鋪,語法為「
」。
本教學操作環境:windows10系統、HTML5版、Dell G3電腦。
html中怎樣讓圖片不平鋪
#在html中想要讓圖片不平鋪,需要利用到style屬性和background-repeat屬性。
style屬性用來設定元素的樣式,background-repeat屬性用來定義圖片的平鋪模式,當設定background-repeat:no-repeat樣式時,圖片就會不平鋪。
範例如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body style="background:url(1118.02.png); background-repeat:no-repeat;"> </body> </html>
輸出結果:
推薦教學:《html影片教學》
以上是html中怎樣讓圖片不平鋪的詳細內容。更多資訊請關注PHP中文網其他相關文章!