在<div> html标签</div>中指定'overflow:auto'

时间:2013-01-11 10:43:06

标签: css html overflow

我需要&#34;溢出:自动&#34;在几个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>   

2 个答案:

答案 0 :(得分:1)

尝试<div style="overflow:auto;">,希望我理解你的要求!

答案 1 :(得分:0)

使用外部css样式表文档来定义css比将内联css应用于实际的html页面要好得多。

Mu的建议是定义一个只包含你想要在这里使用的overflow:auto css的类,并将该类应用于你想要它使用的所有DIV元素。

.myclassname {
    overflow:auto;
}

<div id="somedivID" class="myclassname"></div>

<div id="someotherdivID" class="myclassname"></div>