修复动态长度内容的表长度

时间:2016-07-01 07:43:13

标签: javascript html5 css3 html-table

我想修复将要显示动态字符串的表的高度,字符串的长度是可变的,但是表的行正在增长或根据要显示的字符串最小化的问题 我的CSS:

    #subscriberVehicle {
       width: 100%;
       height: 5%;
    }

   #subscriberVehicle table {
      table-layout: fixed;
       height: 5%;
       width: 100%;
    }
  #subscriberVehicle .col-3 {
     padding-top: 125px;
     height: 30%;
     width: 25%;
      max-height: 10px;     
   } 

和HTML文件:

     <table id="attestation" class="row">
  <tr>
    <td class="col">
      <div id="subscriberVehicle" class="block">
        <table class="data">
          <tr style="height: 10px">
            <td class="col-3 content"><%= subscriber.entity.address %></td>
          </tr>
        </table>
      </div>
    </td>
</table>

0 个答案:

没有答案