清理浮子高度

发布于 2024-12-20 20:44:42 字数 697 浏览 1 评论 0原文

http://jsfiddle.net/yN2Ky/2/show/

表单页面:http://jsfiddle.net/wbRBj/2/

问题在于内容mainarea 会动态更改,因此 overflow:hidden;contentarea 上不起作用。

我想要...

sidebar.height=max(mainarea.height,sidebar.height)=contentarea.height=mainarea.height

有什么建议吗?

提示:尝试使用关键字“Εeditεταστική”进行搜索。

上面的代码适用于没有动态更改 mainarea/sidebar 内容(及其高度)的页面...

 googlecss

似乎 google 明确了 cse div,但不知何故,此属性被禁用 **图像来自 ie F12 模式

http://jsfiddle.net/yN2Ky/2/show/

form page: http://jsfiddle.net/wbRBj/2/

The problem is that content of mainarea changes on the fly so overflow:hidden; on that contentarea doesn't work.

I want...

sidebar.height=max(mainarea.height,sidebar.height)=contentarea.height=mainarea.height

Any suggestions?

Tip: try to search with keyword "Εξεταστική".

The code above works fine for pages that haven't change mainarea/sidebar content (and height of them) on the fly...

googlecss

It seem's that google make clear into cse div, but somehow, this properties are disabled
**image from ie F12 mode

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

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

发布评论

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

评论(1

泪之魂 2024-12-27 20:44:42

选项 #1

  1. 删除 #sidebar 的边框
  2. #mainarea 添加右边框

#mainarea
{
    /* all the other styles */

    border-right:1px double #c1c0a8;
}

选项 #2

等高列

查看我的演示

选项 #3

假列

Option #1

  1. Remove the border from #sidebar
  2. Add a right border to #mainarea

#mainarea
{
    /* all the other styles */

    border-right:1px double #c1c0a8;
}

Option #2

Equal-height Columns

See my demo

Option #3

Faux Columns

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