tr,td高度不生效

功能:表格内容较长,但是页面高度有限,超出显示滚动条

阻碍:给tr或者td加高度都不生效,不限时滚动条

解决方案:td中加div,设置高度和内容溢出时的样式

 1 <table border='1' width='300'>
 2  <tr>
 3   <th>繁华之处</th>
 4  </tr>
 5  <tr>
 6   <td>
 7    <div style='overflow-y:auto;height:150px;'>
 8    黄昏的疾逝开始 我就想将自己撕裂 分散于你的森林 并在瘦弱光中窥视你 以我泛滥的手扎 那野丛的香气不溢
 9    </div>
10   </td>
11  </tr>
12 </table>        

猜你喜欢

转载自www.cnblogs.com/dan1/p/10077103.html