我有一张住在 div 里面的桌子。该表中有大量内容与窗口重叠,因此我需要向左滚动以查看其内容。问题是表格右侧没有填充或边距以使其更易于阅读。
如何向该表添加填充或边距?
这是 html 的样子(请注意,下面的 css 不起作用):
<html>
<head></head>
<body>
<div id="table">
<table>
<thead>...</thead>
<tbody>...</tbody>
</table>
</div>
<style>
table td, table th, table td {border: 1px solid red}
table { padding-right: 100px; border: 1px solid blue}
table thead, table tbody {padding-right: 100px;}
</style>
</body>
</html>