Difference between revisions of "More div"

From MyWiki
Jump to: navigation, search
(Created page with "Make CSS as <source "lang=html4strict"> #upleft { width:100px; height: 300px; background:red; float:left; } #upright { width:300px; height:200px; bac...")
 
Line 1: Line 1:
 
Make CSS as
 
Make CSS as
<source "lang=html4strict">
+
<source lang="html4strict">
 
#upleft {  
 
#upleft {  
 
   width:100px;  
 
   width:100px;  

Revision as of 11:59, 12 June 2014

Make CSS as

#upleft { 
   width:100px; 
   height: 300px; 
   background:red; float:left; 
}
 
#upright { 
   width:300px; 
   height:200px; 
   background:blue; 
   float:left
}
#below { 
   height:300px; 
   width:400px; 
   background:green 
}
 
And in HTML
 
<div id="upleft"></div>
<div id="upright"></div>
<div id="below"></div>