0
使用html标签构建表格。它在Details列中有一个按钮,点击该产品的哪些细节需要显示为手风琴。请使用材料设计帮助实现。html表格中的材质设计中的手风琴
这是html表格结构。
<table>
<th>ID</th>
<th>Title</th>
<tr *ngFor = "let row of indexes">
<td *ngFor = "let id of row>{{id}}</td>
<td><button>DETAILS</button></td>
</tr>
</table>
任何消息?问题解决还是存在? :) – mxii