Several ways to implement CSS height changing with width ratio

Several ways to implement CSS height changing with width ratio

[Solution 1: padding implementation]

principle:

If the value of an element's padding is a percentage, then this percentage is relative to the width of its parent element, and the same is true for padding-bottom.

Use padding-bottom instead of height to achieve the effect of height being proportional to width. Set padding-bottom to the value of the height you want to achieve. At the same time

Its height is set to 0 so that the element's "height" is equal to the value of padding-bottom, thus achieving the desired effect.

<div class="father">
    <div class="childbox"></div>
</div>
<style type="text/css">
.childbox{
  padding-bottom: 20%;
  width: 20%;
  height: 0;
  background: #888888;
}
</style>

The aspect ratio of the above example is 1:1, which means it is a square and scales proportionally according to the width of the parent box.

[Solution 2: A hidden picture to achieve]

principle:

If the div container is not given a height, its height will expand as the elements inside the container change. At this time, we add a picture that matches our aspect ratio inside the container, set the width of the picture to 100%; the height is auto. We know that if the picture only sets the width, the height will change proportionally with the width and automatically scale, so that the height of our internal sub-container will also scale proportionally. Of course, you can hide this img or cover it with another box.

#container {
  width: 100%;
}
.attr {
  background-color: #008b57;
}
.attr img{
  width: 100%;
  height: auto;
}
</style>
<div id='container'>
  <div class='attr'>
    <img src="1.png" alt="">
  </div>
</div>

This method does not require any compatibility considerations and runs perfectly on PC mobile. Apart from adding a DOM structure, it is not worth mentioning considering the hundreds or thousands of codes on a page.

If you think that adding the img tag causes too many http requests, then base64 image encoding can solve this problem. Since our image only needs one shape,

You can compress and encode it boldly, even saving the http request.

[Scheme 3: vw,vh]

New units of CSS3 (CSS3 is great~), we define the width and height of the parent container as the same vw, so that the height and width of the parent container are the same value. At this time, the width and height values ​​of the child container are set as percentages. No matter how the parent container changes its size, the height and width ratio of the child container will not change

Unit Description
vw is relative to the viewport width
vh is the height relative to the viewport
vmin is relative to the smaller of the width or height of the viewport, divided equally into 100 units of vmin

vmax is relative to the larger of the viewport's width or height, divided evenly into 100 units of vmax

<div class="father">
    <div class="childbox"></div>
</div>
.childbox{    
  width: 20%;
  height: 20vw;
  background: #888888;
}

This concludes this article on several ways to implement CSS height proportional to width. For more relevant content on CSS height proportional to width, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  JavaScript two pictures to understand the prototype chain

>>:  MySQL database Shell import_table data import

Recommend

How to switch directories efficiently in Linux

When it comes to switching directories under Linu...

How can MySQL effectively prevent database deletion and running away?

Table of contents Safe Mode Settings test 1. Upda...

SQL Server Comment Shortcut Key Operation

Batch comments in SQL Server Batch Annotation Ctr...

Summary of js execution context and scope

Table of contents Preface text 1. Concepts relate...

MySQL Error 1290 (HY000) Solution

I struggled with a problem for a long time and re...

Share some uncommon but useful JS techniques

Preface Programming languages ​​usually contain v...

In-depth analysis of Flex layout in CSS3

The Flexbox layout module aims to provide a more ...

How to add Lua module to Nginx

Install lua wget http://luajit.org/download/LuaJI...

How to install mysql in docker

I recently deployed Django and didn't want to...

How to configure VMware multi-node environment

This tutorial uses CentOS 7 64-bit. Allocate 2GB ...

CSS3 to achieve timeline effects

Recently, when I turned on my computer, I saw tha...

Vue3 implements Message component example

Table of contents Component Design Defining the f...