如何將文字右移至圖像,如下所示:http://i.imgur.com/3hDi0mW.png。我曾嘗試與明確,float..a很多commands..but對我來說,這是行不通的..將文字右移至圖像
u能幫助我嗎?謝謝:) 這裏是我的代碼:
#subcontent {
margin: 0 auto;
width: 70%;
border-top: 1px solid #ececec;
background-color: red;
}
.person {
float: left;
display: block;
margin: 0 auto;
width: 35%;
}
p {
font-size: 12px;
clear: right;
float: left;
}
.group2 {
overflow: hidden;
margin: 0 auto;
}
.person2 {
float: left;
display: block;
margin: 0 auto;
width: 35%;
}
.textwrap {
float: left;
clear: left;
}
<div id="subcontent">
<div class="group2">
<div class="person">
<img class="textwrap" src="http://i.imgur.com/zzqeeyc.png">
<p>A creative man is motivated by the desire to achieve, not by the desire to beat others. Jane Goodall - Residential Customer</p>
</div>
<div class="person2">
<img class="textwrap" src="http://i.imgur.com/zzqeeyc.png">
<p>A creative man is motivated by the desire to achieve, not by the desire to beat others. Jane Goodall - Residential Customer</p>
</div>
</div>
</div>