我試過編碼評論列表,其中頭像應該顯示在左側,名稱和評論應顯示在右側。任何幫助解決這個問題表示讚賞。HTML&CSS評論列表
成果
期望的結果
HTML
<section>
<div class='friend'>
<h3>John Smith</h3>
<p>Just another comment</p>
<img src='http://media.dunkedcdn.com/assets/prod/13/700x0-5_p17o72pss9bbmvuspb1gl61ot23.jpg'>
</div>
<div class='friend'>
<h3>John Smith</h3>
<p>Just another comment</p>
<img src='http://media.dunkedcdn.com/assets/prod/13/700x0-5_p17o72pss9bbmvuspb1gl61ot23.jpg'>
</div>
<div class='friend'>
<h3>John Smith</h3>
<p>Just another comment</p>
<img src='http://media.dunkedcdn.com/assets/prod/13/700x0-5_p17o72pss9bbmvuspb1gl61ot23.jpg'>
</div>
</section>
CSS
body {
font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #333;
}
a {
color: #333;
text-decoration: none;
}
h1, h2, h3 {
font-weight: 400;
}
h1 {
font-size: 30px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 20px;
}
img {
height: auto;
width: 100%;
}
section {
padding: 30px 60px;
}
.friend img {
height: 70px;
width: 100px;
display: block;
}
好,有沒有從我看到它的錯誤,你的HTML + CSS是有正確的行爲。這裏的關鍵字將是「浮動」...嘗試首先幫助自己:-) –
從語義上講,評論清單正是這樣一個_list_。你應該考慮將你的元素包裝在列表標籤中。不需要你想要的效果;但是,它是列出項目的正確方法。 – FireCrakcer37