html 将css应用于所有元素,而不是首先使用ngfor

66bbxpm5  于 2022-12-09  发布在  其他
关注(0)|答案(1)|浏览(122)

我想应用CSS的所有元素,除了第一下面是我的代码和截图,我想如何和我目前得到的
x1c 0d1x-当前


--必须是
编码

<div class="row">
      <div class="cell col-md-4">Fann dial readings:</div>
      <div class="cell value caption-bold col-md-2  " ngclass="{'col-md-offset-1' : !$first}" *ngFor='let r of mudCheckWorksheet.rheologyTemperatures'>{{r.t}}°F</div>
  </div>
pdsfdshx

pdsfdshx1#

您需要在ngFor中添加first as $first

*ngFor='let r of mudCheckWorksheet.rheologyTemperatures; first as $first'

更多信息,请访问:NgFor#局部变量

相关问题