How can I make div \'left\' and \'right\' look like columns side by side?
I know I can use float:left on them and that will work... but on step 5 and 6 in here http
Use display:table-cell; for removing space between .Left and .Right
display:table-cell;
div.left { background:blue; height:200px; width:300px; } div.right{ background:green; height:300px; width:100px; } .container{ background:black; height:400px; width:450px; } .container > div { display: table-cell; }
LEFT RIGHT