我有兩件事情共享部分 - 一個由文本組成的頭部,一張浮動在其右側的圖像。我希望圖像寬度始終爲308px,並根據文本長度的需要裁剪其高度。我沒有興趣爲.location設置固定高度,因爲內容長度可能會改變。如何才能做到這一點? (謝謝!)CSS - 裁剪圖像高度以匹配文本長度
的HTML:
<section class="location">
<img src="http://evinwolverton.com/img/disc.jpg">
<header>
<h2>This Is A Headline</h2>
Etiam porta sem malesuada magna<br/>
Mollis euismod. Duis mollis<br/>
Est non commodo luctus, nisi erat<br/>
Porttitor ligula, eget lacinia odio<br/>
Sem nec elit.
</header>
</section>
的CSS:
.location {
border: 2px solid #ccc;
overflow: hidden;
width: 620px;
color: #666;
margin: 40px 0;
}
.location header {
float: left;
padding: 25px;
width: 258px;
}
.location h2 {
margin: 0 0 10px 0;
font-size: 1.2em;
color: #333;
}
.location img {
float: right;
width: 308px;
}
有趣!如何用這種技術來限制圖像尺寸? – pianofighter 2013-03-26 23:45:48
現在明白了。謝謝! – pianofighter 2013-03-27 00:36:59