CSS easily implements fixed-ratio block-level containers

CSS easily implements fixed-ratio block-level containers

When designing H5 layout, you will usually encounter banners.

For example, if you want to display it as 2:1, of course the picture returned by the backend should be 2:1, but things are often not so satisfactory, so what should we do?

It always feels inappropriate to write the width and height in a fixed way

Default width: 100%; let the height be adaptive and the image will slowly expand (the product manager will say that this is a bad user experience, but I am a user and I think it is good)

The method is here

        .banner-wrapper {
            position: relative;
            width: 100%;
            padding-top: 50%;
        }

        .banner {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
        }
        
        <div class="banner-wrapper">
            <img class="banner" src="./img/portfolio/cabin.png" alt="">
        </div>

Let me explain

padding-top: 50%; is the key. Using percentages to write padding is relative to its width (don’t ask me why this is the case).

So width: 100%; padding-top: 50%; will perfectly present a 2:1 box

Finally, put the entire img on

Don’t you think it’s very simple to use after finishing the work?

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Installation and deployment of MySQL Router

>>:  Use personalized search engines to find the personalized information you need

Recommend

Input file custom button beautification (demo)

I have written such an article before, but I used...

HTML code that can make IE freeze

We simply need to open any text editor, copy the f...

CSS3 gradient background compatibility issues

When we make a gradient background color, we will...

Theory: The two years of user experience

<br />It has been no more than two years sin...

W3C Tutorial (11): W3C DOM Activities

The Document Object Model (DOM) is a platform, a ...

Linux C log output code template sample code

Preface This article mainly introduces the releva...

The correct way to migrate MySQL data to Oracle

There is a table student in the mysql database, i...

Flex layout allows subitems to maintain their own height

When using Flex layout, you will find that when a...

Introduction to Linux common hard disk management commands

Table of contents 1. df command 2. du command 3. ...

js to realize the function of uploading pictures

The principle of uploading pictures on the front ...

Detailed installation and use of RocketMQ in Docker

To search for RocketMQ images, you can search on ...

Steps to export the fields and related attributes of MySQL tables

Need to export the fields and properties of the t...