我有一个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>
答案 0 :(得分:3)
在这种情况下,<img>
的大小始终会缩放到<td>
。
在这里,我将向您展示如何以正确的方式使用overflow
。
<div class="scroll">
<div class="child"></div>
</div>
<style>
.scroll{overflow:scroll;width:500px;height:500px;background:black}
.child{width:1000px;height:1000px;background:yellow}
</style>
答案 1 :(得分:1)
尝试定义div的高度和宽度......
答案 2 :(得分:1)