我有一个div约。宽度为730px,高度为50px。我想在div的底部添加一个图像,其中div高度结束.i意味着在50px高度之后。 我有一个查询,用于在底部附加图像。 我必须采取另一个div并给它一个背景图像或任何其他想法。
答案 0 :(得分:0)
我使用position: relative
HTML:
<div id="parent">
<div id="image">fff</div>
</div>
其他内容 CSS:
#parent {
width: 750px;
height: 50px;
background: red;
/*height of the image*/
margin-bottom: 60px;
}
#parent #image {
position: relative;
width: 100%;
height: 60px;
background: green;
/*height of the parent */
top: 50px;
}