css实现在一定的区域内最大程度的完整展示图片

效果图

需求:在固定的宽高下,最大程度并且完整的展示图片

css

        .image-container {
            margin: auto;
            width: 1000px;
            height: 1200px;
            overflow: hidden;
            background-color: pink;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

html

    <div class="image-container">
        <img src="/a.jpeg" alt="Your Image">
    div>

你可能感兴趣的:(css,前端)