1.第一種方式:(直接給圖片設置:object-fit:cover;) .imgbox{width: 100%;height:200px;overflow: hidden;position: relative;img{width: 100%;height: 100%; //圖片要設置高度display: block;position: absolute;left: 0;right: 0;top: 0;bottom: 0;object-fit:cover; //重要代碼} } 2.第二種方式(給圖片設置:object-fit: none; object-position: 50% 50%;) .imgbox{width: 100%;height:200px;overflow: hidden;position: relative;img{width: 100%;height: 100%; //圖片要設置高度display: block;position: absolute;left: 0;right: 0;top: 0;bottom: 0;//重要代碼object-fit: none; /* 不調整圖片大小 */object-position: 50% 50%; /* 圖片中心對齊盒子中心 */ } } 完成~