正如您所看到的。我在頭文件3上方有空格,我希望它與圖像本身內聯。圖像旁邊的文字空間
HTML
<div class="wrap">
<div class="content"><img src="img/user_avatar.jpg" width="100" height="101" /><h3>Jonas Hitler</h3></div>
</div>
CSS
.wrap{
display: inline-block;
border:1px solid;
border-radius:8px;
background-color:#fff;
padding:10px;
width:800px;
}
.content{font-family:"Segoe UI"}
.content img, .content h3 { float: left;}
.content img {border:1px solid; border-radius:8px; margin-right: 15px;}
.content h3 {font-size: 22px;}
.content h3 span { font-size: 14px; }
上[小提琴](http://jsfiddle.net/看起來不錯,你不需要任何單位NFfe5/90 /) – Dumisani