源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>菜鸟教程(runoob.com)</title> <style> .fill {object-fit: fill;} .contain {object-fit: contain;} .cover {object-fit: cover;} .scale-down {object-fit: scale-down;} .none {object-fit: none;} </style> </head> <body> <h1>object-fit 属性</h1> <h2>不使用 object-fit:</h2> <img src="paris.jpg" alt="Paris" style="width:200px;height:400px"> <h2>object-fit: fill (默认):</h2> <img class="fill" src="paris.jpg" alt="Paris" style="width:200px;height:400px"> <h2>object-fit: contain:</h2> <img class="contain" src="paris.jpg" alt="Paris" style="width:200px;height:400px"> <h2>object-fit: cover:</h2> <img class="cover" src="paris.jpg" alt="Paris" style="width:200px;height:400px"> <h2>object-fit: scale-down:</h2> <img class="scale-down" src="paris.jpg" alt="Paris" style="width:200px;height:400px"> <h2>object-fit: none:</h2> <img class="none" src="paris.jpg" alt="Paris" style="width:200px;height:400px"> <p>注意: Internet Explorer/Edge 15 或更早版本的浏览器不支持 object-fit 属性。</p> </body> </html>
运行结果: