因此,我終於學習了更多的CSS方法,並遇到了一個小問題。我有一個容器div,裏面有幾個div,其中一個是文本(可以是隨機高度)和一個MAX高度爲200px的圖片。自動調整高度和嵌套div的小CSS問題
我在他們後面使用了虛線/彩色背景,需要自動展開到最高的文字或圖像的高度。現在,當我使用高度:自動對容器div它適用於隨機高度文本的完美:Example Screenshot
但它只是根據文本的高度進行調整;如果圖像比文字高,則圖像會溢出背景虛線/彩色框的底部。 Example Screenshot
我使用的是目前CSS是這樣的:
h1 div#like_detailed {
margin: 0;
font-size: 1.1em;
width: 700px;
}
#details-image img {
border: none;
clear: left;
float: right;
margin: -45px 0 0 0;
max-height: 200px;
padding: 0 7px 0 10px;
}
#deets-container {
background-color: #FEF;
border: #190AE7 1px dotted;
height: auto;
margin-top: 0;
margin-bottom: 30px;
padding-top: 10px;
padding-right: 10px;
padding-left: 10px;
padding-bottom: 0;
}
併爲它的HTML是這樣的:
<div id="deets-container" class="rounded">
<!-- Button -->
<div class="likebtnframe">(some code)</div>
<!-- Button -->
<div class="tweetbtnframe">(some code)</div>
<!-- Button -->
<ul id="share">
<li><a name="share">(some code)</a></li>
</ul>
<!-- Submitted By -->
<div class="submitter_detailed"><span class="submitter-color smalltext">(some code)</span> (some code)</div>
<!-- Image -->
<div id="**details-image**">(some code)</div>
<!-- Like/Quote -->
<h1 id="**like_detailed**">(some code)</h1>
</div>
我有一種感覺,這是很容易的,但我跑花時間自行整理。
有人嗎?
這奏效了!太感謝了! – 2011-03-12 23:22:01
沒問題,祝你好運! – daryl 2011-03-13 02:01:16