我試圖讓一大堆div來環繞圖像,但是失敗了。圍繞一個img(不是文本)包圍單行div
由於粘貼HTML在StackOverFlow中似乎不起作用,因此我目前嘗試模擬Outlook 2010聯繫人條目。
資料來源:http://www.perfmon.com/download/contactdivtest.htm (編輯:或退房@斯托伊奇的酷在線編輯)
<html>
<head>
<title>
</title>
<style type="text/css">
.contactLarge{
width: 250px;
height: 220px;
}
img.picture {
margin-left: 0px;
margin-bottom: 0px;
float: left;
}
.contactLarge item{
}
</style>
</head>
<body>
<div class="contactLarge">
<div style="background-color:#C5CED8;clear:both">title </div>
<img class="picture" width="100" height="200" src="ContactBigLeftBorder.png" alt="">
First, Last <br>
First, Last <br>
First, Last <br>
First, Last <br>
<div style="width:100%;font-weight:bold; float: left;">LastName, Firstname</div>
<div style="font-weight:bold;clear:both;" >CompanyName</div>
<div >Title</div>
<div >Work#</div>
<div >Mobile#</div>
<div >Home</div>
<div >email1</div>
<div >email2</div>
<div >email3</div>
<div >Street</div>
<div style="background-color:#F1F5F9; float:left;" >City,</div>
<div style="background-color:#F1F5F9; float:left;" >State</div>
<div style="background-color:#F1F5F9;" >Zip</div>
<div style="background-color:#F1F5F9; clear:left; float:left;" >httppage</div>
<div style="background-color:#F1F5F9; ">im</div>
</div>
</body>
</html>
誰能告訴我什麼,我需要做的,使所有的移動起來,在圖像周圍包裹的div?我真希望我沒有簡單的東西...
這裏的目標佈局,我嘗試:
alt text http://perfmon.com/download/contactdivtest.bmp
查看http://stackoverflow.com/editing-help以獲取有關將代碼置於問題中的幫助。 – 2010-08-05 12:13:26
你可以發佈你想要完成的圖像嗎?我不能從HTML中知道,也不要使用Outlook 2010。 – DHuntrods 2010-08-05 12:16:01
嘗試使用span而不是div來爲您的特定解決方案 – KoolKabin 2010-08-05 12:16:15