admin管理员组文章数量:1344473
I have two divs whose widths are controlled by percentages. I want the right div to be exactly as tall as the left div, which expands and shrinks based on the width of the image it contains and the width of the browser window.
Is there a way to acplish this without javascript?
/
I have two divs whose widths are controlled by percentages. I want the right div to be exactly as tall as the left div, which expands and shrinks based on the width of the image it contains and the width of the browser window.
Is there a way to acplish this without javascript?
http://jsfiddle/5JU2t/
Share Improve this question asked Aug 30, 2012 at 18:00 Dave KissDave Kiss 10.5k11 gold badges55 silver badges75 bronze badges 3- only other way I know of but no use really if you don't need a fixed height container jsfiddle/p3WjC I personally would not use this - another solution I use is css if your wanting to get the right column to always have its bg image showing the full length of the page? – codeguy Commented Aug 30, 2012 at 18:06
- 1 The old school faux columns handles this sort of thing nicely. – steveax Commented Aug 30, 2012 at 18:22
- that's what I meant ye with the css! best solution I think – codeguy Commented Aug 30, 2012 at 18:44
4 Answers
Reset to default 12The simplest way to achieve this is to make the .right
div absolutely positioned and setting top
and bottom
to 0
.
Just remember to position the parent (.main
) div relatively and remove all of the floats:
.right {
bottom:0;
position: absolute;
right:0;
top: 0;
}
.main {
position: relative;
}
Working example: http://jsfiddle/5JU2t/1/
Note
The reason the right column is a little longer in the example is due to the white space added under an image. Should you only be using an image in this column then you can add float: left
to the image to resolve this:
Working example: http://jsfiddle/5JU2t/2/
I'd try wrapping it in a third div and give your two divs either height:auto
or height: 100%
.
Set the parent (.main
) to display as table
and set the children (.right
, .left
) to display as table cell.
I would say funk all the extra css and use a table layout
本文标签: javascriptSet responsive div height to equal its siblingStack Overflow
版权声明:本文标题:javascript - Set responsive div height to equal its sibling - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743790138a2539415.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论