2016-08-04 3 views
1

アムをぺしゃんこ。ここで生成されたHTMLれる:表は、トラブル別の内部で一つのテーブルを入れ子にした

<table class="table table-bordered table-striped"> 

<tr><td align="center">4 laptops were not added because they lacked unique identifiers.</td></tr> <tr><td align="center">2 laptops were not added because they already exist in the database: </td></tr><tr><td> 
    <table><th>Hostname</th><th>Asset Tag</th><th>Serial</th> 
     <tr> 
     <td></td> 
     <td></td> 
     <td>4646466</td> 
    </tr> 
     <tr> 
     <td></td> 
     <td></td> 
     <td>4646467</td> 
    </tr> 
    </table></td></tr> 
    <tr><td align="center">2 laptops were added to the database: </td></tr><tr><td> 
    <table><th>Hostname</th><th>Asset Tag</th><th>Serial</th> 
     <tr> 
     <td></td> 
     <td></td> 
     <td>4646468</td> 
    </tr> 
     <tr> 
     <td></td> 
     <td></td> 
     <td>4646469</td> 
    </tr> 
    </table></td></tr> 
</table> 

答えて

1

は、ルック

<table class="table table-bordered table-striped" border="1"> 
 

 
<tr><td align="center">4 laptops were not added because they lacked unique identifiers.</td></tr> <tr><td align="center">2 laptops were not added because they already exist in the database: </td></tr><tr><td> 
 
    <table border="1" style="width:100%;"><th>Hostname</th><th>Asset Tag</th><th>Serial</th> 
 
     <tr> 
 
     <td></td> 
 
     <td></td> 
 
     <td>4646466</td> 
 
    </tr> 
 
     <tr> 
 
     <td></td> 
 
     <td></td> 
 
     <td>4646467</td> 
 
    </tr> 
 
    </table></td></tr> 
 
    <tr><td align="center">2 laptops were added to the database: </td></tr><tr><td> 
 
    <table><th>Hostname</th><th>Asset Tag</th><th>Serial</th> 
 
     <tr> 
 
     <td></td> 
 
     <td></td> 
 
     <td>4646468</td> 
 
    </tr> 
 
     <tr> 
 
     <td></td> 
 
     <td></td> 
 
     <td>4646469</td> 
 
    </tr> 
 
    </table></td></tr> 
 
</table>

1

ちょうど内部表にwidth属性

width = '100%' 

を追加してもらいます。それはそれを収容するセルの幅全体に広げます。

DEMO

+0

ありがとうございます。私は最初に来たときに頭がクラウドの答えを受け入れなければならないと思う。 – daninthemix

関連する問題