我用flexbox排列了一些圆圈,它们在小屏幕上看起来很不错:
html - 调整窗口大小时保持圆圈的纵横比-LMLPHP
但只要我把屏幕的宽度加宽,它们看起来就真的被拉长了。但我需要他们从每一个前景。
html - 调整窗口大小时保持圆圈的纵横比-LMLPHP
我不确定是否有一种方法可以修复它们在不同屏幕大小上的显示。也许我可以使用一些媒体查询。怎么处理?
JSFiddle
HTML格式

 <div class="dashboard-grey-menu">
   <div class="flex row no-padding">
     <div class="col"><div class="circle"></div></div>
     <div class="col"><div class="circle"></div></div>
     <div class="col"><div class="circle"></div></div>
     <div class="col"><div class="circle"></div></div>
   </div>
 </div>

CSS
.dashboard-grey-menu {
    height: 30vh;
    background-color: #959595;
  }

  .circle {
    border-radius: 50%;
    width: 15vw;
    height: 25vh;
    background-color: #B7B7B7;
    margin: auto;
  }

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  width: 100%;
}

最佳答案

必须将圆的widthheight设置为相同的值:

.dashboard-grey-menu {
  height: 30vh;
  background-color: #959595;
}
.circle {
  border-radius: 50%;
  width: 10vw;
  height: 10vw;
  background-color: #B7B7B7;
  margin: 20px;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  width: 100%;
}

<ion-content has-header="false">
  <div class="dashboard-grey-menu">
    <div class="flex row no-padding">
      <div class="col"><div class="circle"></div></div>
      <div class="col"><div class="circle"></div></div>
      <div class="col"><div class="circle"></div></div>
      <div class="col"><div class="circle"></div></div>
    </div>
  </div>
</ion-content>

关于html - 调整窗口大小时保持圆圈的纵横比,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36867124/

10-16 14:35