DEKSHONONAMEN
New Member
In a nutshell, i want a \[code\]right div float\[/code\] to extend vertically \[code\]100%\[/code\] but it only works when i don't include \[code\]<doctype>\[/code\] on my htmlin today's standard, do i really have to add \[code\]<doctype>\[/code\]?This is the result in Internet Explorer:
this is just simple \[code\]html\[/code\]\[code\]<html><head><style type="text/css">html, body {padding:0;margin:0;height:100%;}#wrap {background:red;height:100%;overflow:hidden;}#left {background:yellow;float:left;width:70%;min-height:100%;}#right {backgroundink;float:right;width:30%;min-height:100%;}</style><body><div id="wrap"><div id="left"> Content </div><div id="right"> Side Content </div></div></body></html>\[/code\]