gpt4 book ai didi

html - 使用 ng-repeat 的 tr 之后的 md-divider

转载 作者:太空宇宙 更新时间:2023-11-04 10:11:23 26 4
gpt4 key购买 nike

我想在我的每个表格行下添加 md-divider 下划线。特别是因为 md-divider 有很好的 ng=if"!$last"。但似乎 ng-repeat 必须在 tr 元素上进行,因此分隔符不能在表格行之后。

<tr ng-repeat="user in users" class="row">
<td>{{user.firstName}}</td>
<td>{{user.lastName}}</td>
</tr>
- I would want a divider here.

注意:我也试过只使用边框,但它甚至没有出现。

最佳答案

你可以通过给 <td> 添加边框来用 css 来实现它而不是 <tr>

td{
border-bottom:1px solid #000; // change color and size accordingly
}

css border doesn't works in <tr> but you can apply it on <td> because both <td> in <tr> will have the same height so it will not create any problem.

关于html - 使用 ng-repeat 的 tr 之后的 md-divider,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37568871/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com