gpt4 book ai didi

css - 使 div 占据 Y 轴上的剩余空间

转载 作者:太空宇宙 更新时间:2023-11-04 16:19:14 26 4
gpt4 key购买 nike

我有一个如下所示的产品模板: enter image description here

它的 html 是:

                <div id="product">

<div id="cont">
<div class="productPictures">
<a
href="images/spalt_images/body_images/525a.JPG"
target="_blank"
>
<img src="images/spalt_images/body_images/525a.JPG"
width="180"
height="139.52153110048"
alt="front image" class="productImage"/>
</a>
<a
href="images/spalt_images/body_images/525a.JPG"
target="_blank"
>
<img src="images/spalt_images/body_images/525a.JPG"
width="180"
height="139.52153110048"
alt="front image" class="productImage"/>
</a>

</div>
<div class="productNumber"> #123 </div>
<div class="productDesc">
<table>
<col id="col1" />
<col id="col2" />
<tbody>
<tr>

<td> Body Type: </td>
<td> Stratocaster </td>
</tr>
<tr>
<td> Body Wood Type: </td>
<td> Walnut </td>

</tr>
<tr>
<td> Weight: </td>
<td> 12.7 lbs </td>
</tr>
<tr>
<td> Thickness: </td>

<td> 1 inch </td>
</tr>
<tr>
<td> Routing: </td>
<td> Standard </td>
</tr>


</tbody>
</table>
&nbsp;<div class="productPrice">
$456.00
</div>
</div>
</div>
</div>

</div>
</div>

和CSS:

#product {
background-position: left top;
border: 2px solid #2D0000;
background-color: #42533E;
width: 650px;
overflow: hidden;
margin-top: 10px;
margin-bottom: 10px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px 4px 4px 4px

}
.productNumber {
padding: 4px;
font-size: 35px;
color: #C9E0D0;
float: right;
text-shadow: 2px 2px 3px #252525;
}
.productPictures
{
float: left;
padding: 0px;
margin: 5px 0px 10px 0px;
width: 200px;
}
.productDesc{
padding: 5px 10px 5px 5px;
color: #FFFFFF;
font-size: large;
float: left;
width: 400px;
height: 100%;
}
.productPrice {
font-size: 25px;
color: #F4D582;
text-align: right;
font-weight: bold;
text-shadow: 2px 2px 3px #252525;
}
.productImage {
border: 2px solid #20281E;
margin-top: 10px;
margin-right: 10px;
margin-left: 10px;
}

#col1{
width: 40%;
}
#col2{
width: 60%;
}
table{
width: 100%;
}

所以我希望产品描述 div 最终位于底部,这样价格也将最终位于底部。我尝试将高度设置为 100%,但这没有任何效果。

谢谢

最佳答案

这是一个 working example .

相关代码:

#product {
...
position:relative;
}

.productDesc{
...
position:absolute;
bottom:0px;
right:0px;
}

关于css - 使 div 占据 Y 轴上的剩余空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6920586/

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