我有这个标记:
<style> table { border:1px solid black; width:400px; height:300px; border-collapse:collapse; } table tbody { border:1px solid red; } table td { background:yellow; padding:10px; border-bottom:1px solid green; height:20px; } </style> <table> <tbody> <tr><td>test</td></tr> <tr><td>test</td></tr> </tbody> </table>
我需要的是,行不会在高度上拉伸。
有没有一种固定行高的方法?