部门定位
我有一个三列布局,其中有一个容器“三列”。
在右列中,我有一个“功能图块”,它基本上是一个具有可编辑内容的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
这将使
.featured-tile
保持在.right-column
的底部,无论由于内容可变而导致的高度是多少。更新:我想我知道你的意思,试试这个。
这将使
.featured-tile
保留在. Three-col
演示的底部:
Try this:
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.
This will keep
.featured-tile
at the bottom of.three-col
Demo: http://jsfiddle.net/wesley_murch/4FKhm/4/
您是否考虑过 2 列布局,其中第二列是一个 div,其中还有另外两列?
Have you considered a 2-column layout with the second column being a div with another two columns in it?