How to use CSS to fill the parent container div with img images and adjust the container size

How to use CSS to fill the parent container div with img images and adjust 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 concludes this article on how to use CSS to fill the parent container div with img images and achieve adaptive container size. For more information about how to use CSS to fill container content with img images, please search previous articles on 123WORDPRESS.COM or continue browsing the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Implementation script for scheduled database backup in Linux

>>:  SQL implementation of LeetCode (181. Employees earn more than managers)

Recommend

Detailed explanation of MySQL multi-table join query

Table of contents Multi-table join query Inner Jo...

A brief discussion of four commonly used storage engines in MySQL

Introduction to four commonly used MySQL engines ...

Practical MySQL + PostgreSQL batch insert update insertOrUpdate

Table of contents 1. Baidu Encyclopedia 1. MySQL ...

Tutorial on logging into MySQL after installing Mysql 5.7.17

The installation of mysql-5.7.17 is introduced be...

How to handle forgotten passwords in Windows Server 2008 R2

What to do if you forget Windows Server 2008R2 So...

Detailed explanation of mysql5.6 master-slave setup and asynchronous issues

Table of contents 1. MySQL master-slave replicati...

How to configure two-way certificate verification on nginx proxy server

Generate a certificate chain Use the script to ge...

Example of using Docker Swarm to build a distributed crawler cluster

During the crawler development process, you must ...

Ubuntu compiles kernel modules, and the content is reflected in the system log

Table of contents 1.Linux login interface 2. Writ...

Vue.js implements the code of clicking the icon to zoom in and leaving

The previous article introduced how Vue can reali...

Nginx source code compilation and installation process record

The installation of the rpm package is relatively...

Detailed explanation of MLSQL compile-time permission control example

Preface The simple understanding of MySQL permiss...

An article to help you understand the basics of VUE

Table of contents What is VUE Core plugins in Vue...