gpt4 book ai didi

html - div底部的元素

转载 作者:行者123 更新时间:2023-11-28 17:29:57 24 4
gpt4 key购买 nike

我在想这个jsFiddle例如,如果可能的话如何让最后一个段落元素位于框的底部(您需要重新调整窗口区域的大小)

CSS:

@media (min-width: 768px) {

/* top row */
.col .well{
margin-bottom: -99999px;
padding-bottom: 99999px;
}
.col-well {
display:inline-block; height:100%
}
.col-well p {
vertical-align:bottom
}
/* bottom row */
.col-base{
margin-top: -15px; /* cut off top portion of bottom wells */
}
}

@media (max-width: 767px) {
.row.base{
display:none;
}
}

.col-wrap{
overflow: hidden;
}

最佳答案

.well{ 
position: relative;
min-height: 210px;
margin-bottom: -1px;
}

.well > p:last-child {

position: absolute;
bottom:0;

}

jsfiddle

关于html - div底部的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26336950/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com