如何将两个CSS属性链接在一起?
我有一个具有动态高度的 div 和另一个浮动的 div。 css 有没有办法将 div2 的高度与 div1 的高度链接起来?
I have one div that has a dynamic height and another div that is a float. Is there a way in css I can link div2's height with the height of div1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这就是你想要的: http://www.smashingmagazine.com/2010/11/08/equal-height-columns-using-borders-and-negative-margins-with-css/
I think it's that you want : http://www.smashingmagazine.com/2010/11/08/equal-height-columns-using-borders-and-negative-margins-with-css/
您可以将两个 div 包装在第三个 div(包装器)中,然后将 div2 的高度设置为 100%
.div2 { float: right; }高度:100% }
It's possible that you can wrap both divs in a 3rd div(wrapper) and then set the height of div2 to 100%
.div2 { float: right; height: 100% }