1

我正在使用 twitter bootstrap,但我认为它与解决方案无关,所以这里是代码:

div.span12
   table.table.table-hover
      thead
        tr
            th Device Name
            th Device ID
            th Device Description
      tbody
        each dev in devices
            tr
                td #{dev.dname}
                td #{dev.did}
                td #{dev.ddesc}

如果其中一个属性变得太大,表格将移到一侧,为大项目留出空间。如何保持原来的均匀间距并允许在表格的行上自动换行?

 <div class="span12">
   <table class="table table-hover">
       <thead>
         <tr>
            <th>Device Name</th>
             <th>Device ID</th>
             <th>Device Description</th>
         </tr></thead>
         <tbody>
            <tr>
                <td>nn</td>
                <td>ii</td>
                <td>dd</td>
            </tr>
        </tbody></table></div>
4

1 回答 1

2

只需覆盖属性td

td {
   width: 33.33%;
}

演示

于 2013-04-07T18:11:52.827 回答