【发布时间】:2017-10-26 15:20:25
【问题描述】:
我画了一个圆圈,但我希望它在缩小时保持 1:1 的纵横比,这样它在移动设备上看起来就不像椭圆了
html:
<div class='container'>
<div class='circle'></div>
</div>
css:
.container {
display: flex;
border: 2px solid black;
justify-content: center;
align-items: center;
}
.circle {
width: 500px;
height: 500px;
background-color: red;
border-radius: 50%;
}
【问题讨论】:
标签: css responsive-design resize responsive