我有一个动态table
,目前看起来如下:
该表的代码如下:
table
tr
td LOCATIONS
tr(ng-repeat="location in currentSchools.Locations")
td
td {{location}}
因为该表是动态的(现在使用Angular' s ng-repeat
),所以我不能简单地将第一个位置放在一个单元格之上。我如何对此进行编码,使列出的位置与单词LOCATIONS
开始处于同一级别?
我已尝试使用css在第二个tds上应用负边距 - 但这并不起作用。
答案 0 :(得分:2)
尝试
table
tr(ng-repeat="location in currentSchools.Locations")
td
span(ng-if="$first") {{LOCATIONS}}
td {{location}}