Html表,如何在一行中使用两个tr?

时间:2017-02-16 13:37:56

标签: html html-table

我有表格和行我添加数据-href,但是我已经为每一行下拉了,为此我们不需要链接,该怎么做?

在这个变种中,我的下拉不起作用,因为点击他时调用data-href

        <tr class="clickable" data-href="{{ path('outbound_invoices_show', {'id': outboundInvoice.id}) }}">
            <td>
                {{ outboundInvoice.invoiceNumber }}
            </td>
            <td>
                 my drop down with link
            </td>
        </tr>

在这个变种中工作正常,但有两行

            <tr class="clickable" data-href="{{ path('outbound_invoices_show', {'id': outboundInvoice.id}) }}">
            <td>
                {{ outboundInvoice.invoiceNumber }}
            </td>
        </tr>

        <tr>
            <td>
                 my drop down with link
            </td>
        </tr>

enter image description here

1 个答案:

答案 0 :(得分:0)

table{width: 100%} tr{display: inline}

应该有效。否则请展示你所拥有的。您也可以使用ul作为内联列表,因为我认为默认情况下行不应该是内联的。