布局
自动溢出滚动
.overflow-auto 可为元素启用自动滚动条,当内容超出元素边界时即可滚动。
这对实现响应式 <table> 很有用。
| Heading | Heading | Heading | Heading | Heading | Heading | Heading | Heading | Heading | Heading |
|---|---|---|---|---|---|---|---|---|---|
| Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
| Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
| Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
查看源码
<div class="overflow-auto">
<table>
...
</table>
</div>