我已經使用flex來獲得以下外觀和感覺。顯示器彎曲會導致混合間距問題
正如你所看到的組箱子的底線有不同的間距比第一行。我的標記如下。請注意,我只包含父元素和一個子元素。
<div class="wr-operations">
<a class="operation-icon text-center ripple">
<i class="fw fw-dial-up icon fw-3x"></i>
<span>Ring</span>
</a>
</div>
css的內容如下。
.wr-operations{
display: flex;
-webkit-flex-flow: row wrap;
justify-content: space-between;
}
.operation-icon {
width: 88px;
height: 100px;
float: left;
cursor: pointer;
position: relative;
margin: 0px 0px 10px 0px;
font-size: 12px;
background: #fafafa;
padding: 2px 10px 10px 10px;
}
我的問題是如何對齊底線作爲第一個!內容應該保留在第二行。
嘗試刪除'證明內容:空間之間;' – XYZ