我需要在几个 html 元素上设置“溢出:自动”。
有没有办法将它嵌入到 html 中,而不是在 ie 中定义 div。
div.scroll
{
overflow:auto;
}
不是在标签中包含上述代码,而是可以定义 HTML 元素。
这似乎不起作用。
<body>
<div {overflow:auto;}>
<table border="1">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th
</tr>
</thead>
<tbody>
</table>
</div>
</body>