美文网首页
table 设置max-height无效

table 设置max-height无效

作者: 嗯哼曼 | 来源:发表于2020-03-06 14:16 被阅读0次

    试了很多方法都无效,网上还搜了一下也没什么好的方法。
    最后换了个思路table外层加一个div,给外层这个div设置max-height即可。

    <div style="max-height:400px;overflow:auto;">
            <p class="historyShow-tag"  v-if="recordHhistoryShow == '0'">暂无记录</p>
            <table border="1" cellspacing="0" id="extension" v-else-if="recordHhistoryShow == '1'">
              <thead>
                <tr><th>序列号</th><th>文件名</th><th>文件路径</th></tr>
              </thead>
              <tbody>
                <tr 
                v-for="(item,index) in recordHistoryItems"
                v-bind:key="item.id"
                >
                  <td>{{index}}</td>
                  <td>{{item.fileName}}</td>
                  <td>{{item.filePath}} </td>
                </tr>
              </tbody>
            </table>
      </div>
    

    相关文章

      网友评论

          本文标题:table 设置max-height无效

          本文链接:https://www.haomeiwen.com/subject/mvkirhtx.html