CSS object-fit 属性值
CSS 中的 object-fit 属性用于调整图像或视频的大小以使其适合其容器。它具有以下值
- contain:内容按比例缩放以填满
- cover: 裁剪以填满
- fill:填充内容框。
示例
你可以尝试运行以下代码以使用 cover 值实现 object-fit 属性。
<!DOCTYPE html>
<html>
<head>
<style>
.myimg {
width:250px;
height:350px;
object-fit:fill;
}
</style>
</head>
<body>
<h2>SWIFT</h2>
<img class = "myimg"
src = "https://tutorialspoint.com/assets/videos/courses/67/images/course_67_image.png"
alt = "Python Data Science" width = "300" height = "200">
</body>
</html>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP