我想你正在寻找这样的东西:http: //jsfiddle.net/6shan/
这是html:
<div class="comment">
<div class="avatarContainer">
<img class="avatar" src="http://i2.wp.com/c0589922.cdn.cloudfiles.rackspacecloud.com/avatars/male200.png"></img>
</div>
<div class="commentBody">
<div class="commentHeader">commentHeader</div>
<textarea class="commentText">commentText</textarea>
</div>
</div>
这是随附的 css :
.comment
{height:150px; width:250px;
border:1px solid black;
padding:15px;
}
.avatar
{ height:px; width:24px;}
.avatarContainer
{ height:150px; width:30px;float:left;}
.commentBody
{ height:150px;width:220px;float:right;}
.commentHeader
{height:30px; width:100%; margin-left:10px; border-bottom:1px solid black;}
.commentText
{ height:100px; width:100%;
margin:10px 10px 10px 10px;}