Created
March 2, 2017 09:31
-
-
Save qzm/402751a8b0b81a91857a2e471efa4d71 to your computer and use it in GitHub Desktop.
自适应正方形
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 方法一:1个vw 单位,代表1%视窗单位,相对的还有 hv ,代表一个视窗高度 */ | |
.square { | |
width : 25%; | |
height : 25vw; | |
} | |
/* 方法二:height 为0,使用padding撑开高度,padding的百分比根据所在block的宽度来计算的 */ | |
.square { | |
width : 25%; | |
height : 0; | |
padding : 12.5% 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment