Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网格的不同列中有几个div框,我想识别底部边缘比任何其他框高不到 50px 的框,并调整其高度以确保它们在底部“对齐”。
div
见小提琴:http: //jsfiddle.net/YFURR/
在该示例中,我想确定 box1 和 box4 的底边彼此之间的距离小于 50px,并将 box4 的高度扩展为“对齐”到 box1 的底边。与 box2 和 box5 相同。
有任何想法吗?
您可以设置一个高度的CSS:100%;
.mydivs { 显示:块;高度:100%;}
要使 100% 高度起作用,还要确保您的包含元素设置了高度
我不是 100% 确定您要做什么,但 css min-height 可能是您正在寻找的。
your_selector { min-height:50px; }