CSS fills the parent container div with img images and adapts to the container size

CSS fills the parent container div with img images and adapts to the container size

When multiple images are introduced into a page, the image sizes may be inconsistent. However, if we want to display them in a consistent size, directly setting the image size will cause the image to deform. This is the problem we encountered. Let's see the solution.

<div>
        <img src="imported image address" alt="">
</div>

Method 1: Center the img element vertically and set its height and width to a minimum full-screen value

div{
    position:relative;
 width: 100px;
    height: 100px;
    overflow:hidden;
}
 div img{
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    min-width: 100%;
    min-height: 100%;
    transform:translate(-50%,-50%);
}

Method 2: Set the CSS style of img and add object-fit: cover, which is similar to the background-size: cover of the background image in CSS3;

div{
  width: 100px;
  height: 100px;
 
}
div img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}

This is the end of this article about how to use CSS to fill the parent container div with img images and adapt to the container size. For more related information about how to use CSS to fill the parent container content with img, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Process parsing of reserved word instructions in Dockerfile

>>:  Three ways to realize the horizontal centering of elements and the understanding of the concepts of fixed layout and flow layout

Recommend

MySQL uses the Partition function to implement horizontal partitioning strategy

Table of contents 1 Review 2 Five strategies for ...

Detailed explanation of three ways to wrap text in el-table header

Table of contents Problem Description Rendering T...

How to use Docker containers to implement proxy forwarding and data backup

Preface When we deploy applications to servers as...

Basic installation process of mysql5.7.19 under winx64 (details)

1. Download https://dev.mysql.com/downloads/mysql...

JS deep and shallow copy details

Table of contents 1. What does shallow copy mean?...

How to deploy k8s in docker

K8s k8s is a cluster. There are multiple Namespac...

Solve the problem of specifying udp port number in docker

When Docker starts a container, it specifies the ...

Vue project realizes paging effect

The paging effect is implemented in the vue proje...

Ubuntu Docker installation in vmware (container building)

1. Mind Map 2. How to build a container 2.1 Prepa...

CSS container background 10 color gradient Demo (linear-gradient())

grammar background: linear-gradient(direction,col...

A record of pitfalls in JS regular matching

I recently discovered a pitfall in regular expres...