将多个Foundation网格单元缩小到相同的宽度

时间:2019-01-30 10:04:23

标签: html css zurb-foundation

目前,我正在使用一个响应式视图,该视图应模仿一个由N行和2列组成的表。目前,我在各列中使用large-2large-10,偶然发现Foundation的*-shrink*-auto类。当然,我不能只使用以下内容:

<div className='grid-x grid-margin-x space'>
  <div className='cell small-12 large-shrink text-bold'>
    {translation.currentSaldoLabel}
  </div>
  <div className='cell small-12 large-auto'>
    {overview.totalUnsettledRevenue.toFixed(2)}
  </div>
</div>
<div className='grid-x grid-margin-x'>
  <div className='cell small-12 large-shrink text-bold'>
    {translation.currentDateLabel}
  </div>
  <div className='cell small-12 large-auto'>
    {overview.requestDate.formatDayMonthYear()} - {formatLocalTime(overview.requestTime)}
  </div>
</div>

此代码段将缩小第一列中的单元格,但不会达到相同的宽度,因为它们之间没有实际关系。我想知道是否存在可行的方法来同时调整多个单元格的宽度,以使其缩小到相等的大小。

0 个答案:

没有答案