2012-11-04 184 views
1

我想創建div結構,因爲我附加了圖像。請任何人都可以幫我解決這個問題。需要幫助來創建div結構

enter image description here

+0

這裏?在哪裏?... –

+0

你想做什麼?它是關於圓角和陰影嗎? – Jean

+0

你有什麼嘗試?可以做幾個。網上有很多教程可以幫助你入門。 –

回答

1

你可以做到這一點像下面和浮動

<div class='outer'> 
<div class='left'></div> 
<div class='tow'> 
    <div class='up'></div> 
    <div class='cbt'></div> 
    <div class='jimit'></div> 
    <div class='one'></div> 
    <div class='below'></div> 
</div> 
<div class='right'></div> 

CSS

.outer,leftm.right,.tow{float:left;} 
.left,.right{width:25%;} 
.tow{width:50%;} 
.cbt{clar:both} 

enter image description here

1

使用絕對位置進行擺放此 - Demo

.center { 
    position: absolute; 
    width: 300px; 
    height: 200px; 
    left: 50%; 
    top: 50%; 
    margin-left: -150px; /* Half of div width */ 
    margin-top: -100px; /* Half of div height */ 
}