2016-09-23 15 views
0

フッターの列がテーブルの列と一致していないため、下記のスクリーンショットを発行してください。プル右を使用してプルしました。 Issue Screeshotブートストラップテーブルのフッターテキストの位置合わせの問題

  <tfoot> 
      <tr> 
       <th><?=lang("total");?></th> 
       <th class="text-right"><?=$this->sma->formatMoney($inv->total + $inv->product_tax);?></th> 
      </tr> 

       <tr> 
        <th><?=lang("rounding");?></th> 
        <th class="text-right"><?=$rounding;?></th> 
       </tr> 
       <tr> 
        <th><?=lang("grand_total");?></th> 
        <th class="text-right"><?=$this->sma->formatMoney($inv->grand_total + $rounding);?></th> 
       </tr> 

答えて

1

最後th

<tfoot> 
      <tr> 
       <th><?=lang("total");?></th> 
       <th class="text-right" colspan="2"><?=$this->sma->formatMoney($inv->total + $inv->product_tax);?></th> 
      </tr> 

       <tr> 
        <th><?=lang("rounding");?></th> 
        <th class="text-right" colspan="2"><?=$rounding;?></th> 
       </tr> 
       <tr> 
        <th><?=lang("grand_total");?></th> 
        <th class="text-right" colspan="2"><?=$this->sma->formatMoney($inv->grand_total + $rounding);?></th> 
       </tr> 
colspanを追加
関連する問題