部门定位

发布于 2024-11-05 13:12:38 字数 252 浏览 2 评论 0原文

我有一个三列布局,其中有一个容器“三列”。

在右列中,我有一个“功能图块”,它基本上是一个具有可编辑内容的 220 像素宽的占位符。

我需要“功能图块”与“三列”容器一起移动,因此如果内容的高度扩展,我需要功能图块随之向下移动...

可能需要 Jquery - 不确定。

谢谢!

编辑:我希望功能图块始终位于底部。移动 = div 将根据插入的内容量扩展高度 - 无固定高度

I have a three column layout with a container "three-col"

In the right column I have a "Feature Tile" which is basically a 220px wide placeholder with editable content.

I need the "Feature Tile" To move with the "three-col" container, so if the content expands in height, I need the feature tile to move down with it...

May need Jquery - not sure.

Thanks!

EDIT: I want the feature tile to always be positioned at the bottom. Move = The div will expand in height based on how much content is inserted - no fixed height

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

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

发布评论

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

评论(2

勿挽旧人 2024-11-12 13:12:38

试试这个:

.right-column {
    position:relative;
}
.featured-tile {
    position:absolute;
    bottom:0;
}

这将使 .featured-tile 保持在 .right-column 的底部,无论由于内容可变而导致的高度是多少。

更新:我想我知道你的意思,试试这个。

.three-col {
    position:relative;
}
.featured-tile {
    position:absolute;
    bottom:0;
}

这将使 .featured-tile 保留在 . Three-col 演示的底部

Try this:

.right-column {
    position:relative;
}
.featured-tile {
    position:absolute;
    bottom:0;
}

This will keep .featured-tile at the bottom of .right-column no matter what height it is due to variable content.

UPDATE: I think I know what you mean, try this instead.

.three-col {
    position:relative;
}
.featured-tile {
    position:absolute;
    bottom:0;
}

This will keep .featured-tile at the bottom of .three-col

Demo: http://jsfiddle.net/wesley_murch/4FKhm/4/

月下凄凉 2024-11-12 13:12:38

您是否考虑过 2 列布局,其中第二列是一个 div,其中还有另外两列?

Have you considered a 2-column layout with the second column being a div with another two columns in it?

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