CSS3 同時新增多張背景圖片 (螢幕適配)
阿新 • • 發佈:2019-02-13
demo.html:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .box { width: 500px; height: 500px; border: 1px solid #000; margin: 100px auto; /* 新增多個背景圖片,用","號隔開 (可以用於螢幕適配) */ background: url("22.jpg") no-repeat left top, url("22.jpg") no-repeat right top, url("22.jpg") no-repeat left bottom, url("22.jpg") no-repeat right bottom, url("22.jpg") no-repeat center; } </style> </head> <body> <div class="box"></div> </body> </html>