This article mainly shares with you how to achieve equal scaling of height and width of divs. It has a good reference value and I hope it will be helpful to everyone. Let’s follow the editor and take a look.
1, Option 1: Do it responsively. You can set the height and width of p under different screen widths according to media queries. The specific settings depend on how you want to display responsively
1 2 3 4 5 6 7 |
|
2. Option 2: Do it as a percentage. You need to use a little trick here. When padding is measured in percentage, it is calculated relative to the width of the container, so you can set the height to 0 and the content will naturally overflow.
Set a padding-bottom
height:0;
width:50%;
padding-bottom:30%
Then the height-to-width ratio of this div is 30%:50%
1 |
|
The above is the detailed content of How to achieve proportional scaling of height and width of divs. For more information, please follow other related articles on the PHP Chinese website!