2011-03-04 94 views
1

任何人都可以幫助,我是網站的首發嗎?這裏是代碼:Div不會出現在主div上,並且div寬度不起作用

<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<style type="text/css"> 
<!-- 
.window { 
margin:0; 
padding:0; 
border: solid 1px #666666; 
} 
.image { 
height:50px; 
widows:50px; 
float:left; 
} 
.text { 
font-size:12px; 
color:#666666; 
float:left; 
} 
--> 
</style> 
</head> 
<body> 
<div class="window"> 
<div class="image">image</div> 
<div class="text"></div> 
</div> 
</body> 

回答

1

首先,對於寬度,使用窗口,使用寬度:50px;爲div窗口上顯示div圖像和div文本,請使用clear div,請參閱下面的代碼...

<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<style type="text/css"> 
<!-- 
.window { 
margin:0; 
padding:0; 
border: solid 1px #666666; 
} 
.image { 
height:50px; 
width:50px; 
float:left; 
} 
.text { 
font-size:12px; 
color:#666666; 
float:left; 
} 
.clear { 
clear:both; 
} 
--> 
</style> 
</head> 

<body> 
<div class="window"> 
<div class="image">image</div> 
<div class="text"></div> 
<div class="clear"></div> 
</div> 
</body> 

是好的嗎?

-1

你應該分配一個寬度和高度的divs爲了使其可見。