zoukankan      html  css  js  c++  java
  • bootstrap table 文字超出父div范围

    <table class="table table-bordered table-striped table-hover table-hover table-responsive" style="table-layout:fixed;word-break:break-all">
        <thead>
        <tr>
            <th width="20%">{:lang('Refund ID')}</th>
            <th width="15%">{:lang('Order ID')}</th>
            <th width="15%">{:lang('Refund Status')}</th>
            <th width="15%">{:lang('Total')}</th>
            <th width="20%">{:lang('Add Time')}</th>
            <th width="15%">{:lang('Action')}</th>
        </tr>
        </thead>
        <tbody>
        {foreach name="refund" item="vo"}
        <tr>
            <!-- <td>{$vo.refund_id}</td> -->
            <td data-class="xd-table-th"><span>{$vo.refund_id}</span></td>
            <td>{$vo.order_id}</td>
            <td>{$vo.name}</td>
            <td>{$vo.total}</td>
            <td>{$vo.date_added}</td>
            <td><a href="{:url('home/Center/refund_view',array('refund_id'=>$vo['refund_id']))}" target="_blank">{:lang('see')}</a>
        </tr>
        {/foreach}
        <tr>
            <td colspan="12" align="right">{$page}</td>
        </tr>
        </tbody>
    </table>

      

  • 相关阅读:
    网络摄像头RTSP协议视频平台EasyNVR升级版本后如何迁移原版数据?
    ubuntu下安装dosbox
    动态数组
    C风格字符串
    指针
    数组
    bitset
    迭代器iterator
    vector
    string--getline(),cctype
  • 原文地址:https://www.cnblogs.com/moguzi12345/p/14931489.html
Copyright © 2011-2022 走看看