Skip to content

Instantly share code, notes, and snippets.

@qzm
Created March 2, 2017 09:31
Show Gist options
  • Save qzm/402751a8b0b81a91857a2e471efa4d71 to your computer and use it in GitHub Desktop.
Save qzm/402751a8b0b81a91857a2e471efa4d71 to your computer and use it in GitHub Desktop.
自适应正方形
/* 方法一: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