div 中的滚动条
我有一个 div,里面有一张桌子。在此表中,您可以看到有一个图像标签。通过 Javascript,我设置图像 src 并显示。
我的问题是,如果图像很大,div 必须滚动,但它不滚动。
<div style="position:absolute;top:30px;left:640px;overflow:auto;">
<table frame="box" width="600px" height="330px">
<tr>
<td><img id="graphId" style="display:none" src="" /></td>
</tr>
</table>
</div>
I have one div inside which I have one table. In this table as you can see there is one image tag. By Javascript I am setting the image src and displaying.
My problem is, if the image is large the div must scroll, but it is not scrolling.
<div style="position:absolute;top:30px;left:640px;overflow:auto;">
<table frame="box" width="600px" height="330px">
<tr>
<td><img id="graphId" style="display:none" src="" /></td>
</tr>
</table>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在这种情况下,
的大小始终会缩放以适合
。
下面我将向您展示如何正确使用
overflow
。jsfiddle 上的演示。
In this case,
<img>
's size is always zoomed to fit in<td>
.Here I'll show you how to use
overflow
in the right way.Demo on jsfiddle.
将 div 样式属性中的
overflow:auto;
更改为overflow:scroll;
。滚动的定义:
Change
overflow:auto;
tooverflow:scroll;
in your div style attribute.Definition for scroll:
尝试定义div的高度和宽度...
http://jsfiddle.net/qyFTt/2/
try defining the height and width of the div...
http://jsfiddle.net/qyFTt/2/