Difference between revisions of "More div"

From MyWiki
Jump to: navigation, search
Line 1: Line 1:
Make CSS as
+
Make CSS as :
 
<source lang="html4strict">
 
<source lang="html4strict">
 
#upleft {  
 
#upleft {  

Revision as of 12:00, 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>