gpt4 book ai didi

css - DIV 内的 DIV 溢出 :hidden?

转载 作者:太空宇宙 更新时间:2023-11-03 19:12:24 25 4
gpt4 key购买 nike

这里有点头疼,所以任何指点将不胜感激!

我有一个标题 div,其属性为 overflow:hidden。此标题的左侧是页面标题,右侧是一些图像。这工作得很好,一切都按预期显示。

但是,我现在需要将这些图像包裹在 div 标签周围(它们将变得可点击,并通过 Ajax 更新 - 所以我需要为每个图像定义回发 div)。如前所述,如果不将图像包裹在 div 标签周围,它们就可以正常显示。但是,一旦我添加了 div 标签,它们就会消失(尽管仍然显示在页面源代码中)。 div 标签采用简单的形式,并且没有样式与之关联。

我确定我在这里遗漏了一些东西,但对于我的生活来说,它现在完全绕过了我!

谢谢:-)

最佳答案

如果我理解你的问题,你的问题对我来说有点不清楚

如果您需要点击事件,您可以使用asp:ImageButton 来保存图像。如果你真的需要使用 div

<div class="header"> // this is the one with overflow hiddden
<div class="left"> // this div holds the page title ; float:left
<h1>Title</h1>
</div>

<div class="right"> // this div to hold the divs which contain images
// if all your images are same height set the same height to this div and float:right
<div class="image"> // this div holds the image; make float:left set height and width
<img/>
</div>
<div class="image">
<img />
</div>
<div class="image">
<img />
</div>
</div>

</div>

希望对你有帮助

关于css - DIV 内的 DIV 溢出 :hidden?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7877033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com