添加背景圖片有四種常用的方式,分別是:
repeat 完全平鋪
repeat-x 橫向平鋪
repeat-y 縱向平鋪
no-repeat 不平鋪
使用示例:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .box{ width: 600px; height: 600px; border: 1px solid red; background: url("./images/QQon5.gif") no-repeat; //在這里可以進行更改 } </style> </head> <body> <div class="box"></div> </body> </html>