想知道是否可以在同一行顯示1個文本框和3個圖像?所有的圖像都是相同的大小。如果可能的話,我最好還是喜歡每張圖片下面的文字?在同一行顯示1個文本框和3個圖像
繼承人的代碼:
<div class="row">
<div class="side-bar">
<h3> Recent Work </h3>
<p>Here's some of my latest work, covering web design, branding and identity.</p>
<a href="#">View the Portfolio →</a>
</div>
<div class="recent-wrap">
<a href="#"><img src="img/body-metrix.png"></a>
<a href="#"><img src="img/body-metrix-logo.png"></a>
<a href="#"><img src="img/market.png"></a>
</div>
</div>
.row {
display: inline;
float: left;
}
.side-bar {
padding: 10px;
background-color: #f3f3f3;
height: 200px;
width: 250px;
}
.side-bar h3 {
font-weight: bold;
font-size: 19px;
margin-bottom: 5px;
}
.side-bar p {
font-size: 14px;
}
.side-bar a {
font-size: 13px;
}
.recent-wrap img {
max-width: 225px;
min-height: 125px;
border-style: solid;
border-width: 1px;
border-color: #000000;
margin-right: 20px;
margin-bottom: 20px;
}
香港專業教育學院在網上搜索,但沒有運氣尚未。 在此先感謝。
你有任何特定的瀏覽器要求,如IE7或其他? –
我相信你正在尋找'display:inline-block'或'float:left' –