将td向上移动一个单元格

时间:2015-07-17 17:25:16

标签: html css angularjs

我有一个动态table,目前看起来如下: enter image description here

该表的代码如下:

table
  tr
    td LOCATIONS
  tr(ng-repeat="location in currentSchools.Locations") 
    td
    td {{location}}

因为该表是动态的(现在使用Angular' s ng-repeat),所以我不能简单地将第一个位置放在一个单元格之上。我如何对此进行编码,使列出的位置与单词LOCATIONS开始处于同一级别?

我已尝试使用css在第二个tds上应用负边距 - 但这并不起作用。

1 个答案:

答案 0 :(得分:2)

尝试

table
  tr(ng-repeat="location in currentSchools.Locations") 
    td 
      span(ng-if="$first") {{LOCATIONS}}
    td {{location}}