我希望每個表格行都是可點擊的,以便它像手風琴一樣展開,但當手風琴激活時,它不佔用整行的長度。我怎樣才能讓它佔據整個行?代碼如下。表內的語義ui手風琴
<table class="ui selectable accordion fixed single line celled table">
<thead>
<tr>
<th class="one wide id-row">ID</th>
<th class="fifteen wide name-row">Name</th>
</tr>
</thead>
<tbody>
{{#each data}}
<tr class="appRow title">
<td class="id-row">{{_id}}</td>
<td class="name-row">{{name}}</td>
</tr>
<div class="content">
<tr>
<td colspan="2">{{> form}}</td>
</tr>
</div>
{{/each}}
</tbody>