响应网格被具有空值的span元素破坏

时间:2015-11-06 10:24:54

标签: html css angularjs stylus jeet-grid

我从网站上获得了JSON。此JSON的某些字段为空("")。我有一个像这样的HTML(Jade)代码:

 div(ng-repeat="item in itemsToDisplay", class="item tableLine")
    span(class="tableItemid")
        a(href="#/itemDetail/{{ item.Itemid }}") {{ item.Itemid }}
    span(class="tableItemdescription")
        {{ item.Itemdescription }}
    span(class="tableDate")
        {{ item.CreationDate }}
    span(class="tableCountry")
        {{ item.Address }}

和css(slylus)这样:

span.tableItemid
   col(1/15)
span.tableItemdescription
   col(3/15)
span.tableDate
   col(2/15)

如果字段为空,则范围为空。我在响应网格中有偏移。避免它的最佳方法是什么?

0 个答案:

没有答案