维科纳蒂 »
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> .div1 { border: 1px solid black; height: 120px; width: 150px; background: url(../images/img_flwr.gif); background-repeat: no-repeat; background-size: contain; } .div2 { border: 1px solid black; height: 120px; width: 150px; background: url(../images/img_flwr.gif); background-repeat: no-repeat; background-size: cover; } .div3 { border: 1px solid black; height: 120px; width: 150px; background: url(../images/img_flwr.gif); background-repeat: no-repeat; } </style> </head> <body> <h1>Властивість background-size</h1> <h2>background-size: contain:</h2> <div class="div1"> <p>Lorem ipsum dolor sit amet.</p> </div> <h2>background-size: cover:</h2> <div class="div2"> <p>Lorem ipsum dolor sit amet.</p> </div> <h2>Розмір фону не визначено:</h2> <div class="div3"> <p>Lorem ipsum dolor sit amet.</p> </div> <p>Оригінальне зображення:</p> <img src="../images/img_flwr.gif" alt="Квіти" width="224" height="162"> </body> </html>