DIV 显示为块时重叠

发布于 2024-11-02 14:09:39 字数 359 浏览 1 评论 0原文

在此网站上:

http://stmc.modulemedia.co.uk/HossIntropia

我有以下代码由 CMS 生成,我已经尽可能地剥离了内容,删除了 .net 代码和 CMS 生成的内容,但仍然看不到为什么文本(启动 Hoss Intropia...)重叠。

基本上有两个 DIVS LeftCol 和 RightCol,我已将它们从并排移动到 LeftCol 位于 RightCol 之上。

这是我正在接手的一个项目,所以我能改变的内容是有限的。

感谢您的帮助!

On this site:

http://stmc.modulemedia.co.uk/HossIntropia

I have code that's generated by a CMS, I have stripped things back as much as possible, removing the .net code and things generated by the CMS, but still cannot see why the text (that starts Hoss Intropia...) is overlapping.

There are basically two DIVS LeftCol and RightCol, that I have moved from being side-by-side to LeftCol being above RightCol.

This is a project I'm taking over, so I'm limited as to what can be changed.

Thanks for your help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

So尛奶瓶 2024-11-09 14:09:39

我认为您只需要增加包含内容的 #LeftCol 内的 div 的高度。

尝试将 .menu 上的 height 更改为 height: 480px。或者甚至可以删除高度

I think you just need to increase the height of the div inside #LeftCol that is containing stuff.

Try changing the height on .menu to height: 480px. Or perhaps even remove the height.

凝望流年 2024-11-09 14:09:39

div.Menu 有一个 height 属性,由于内容超出了该高度,因此它与 div#RightCol 内容重叠。

如果您从 div.Menu 中删除高度,它就可以工作

div.Menu has a height property, and since the content is spilling out beyond that height, it overlaps the div#RightCol content.

if you remove the height from div.Menu, it works

眉目亦如画i 2024-11-09 14:09:39

设置右列的边距应该可以解决问题:

#RightCol {
    margin:120px 0 0 0 !important;
}

settting the margin of the right cols should solve the problem:

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