div 中的滚动条

发布于 2024-12-09 07:23:35 字数 392 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

晒暮凉 2024-12-16 07:23:35

在这种情况下, 的大小始终会缩放以适合

下面我将向您展示如何正确使用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>

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.

<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>

Demo on jsfiddle.

一向肩并 2024-12-16 07:23:35

将 div 样式属性中的 overflow:auto; 更改为 overflow:scroll;

滚动的定义:

溢出被剪掉,但添加了一个滚动条来查看其余部分
内容

Change overflow:auto; to overflow:scroll; in your div style attribute.

Definition for scroll:

The overflow is clipped, but a scroll-bar is added to see the rest of
the content

悸初 2024-12-16 07:23:35

尝试定义div的高度和宽度...

http://jsfiddle.net/qyFTt/2/

try defining the height and width of the div...

http://jsfiddle.net/qyFTt/2/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文