You could use css, something like this
<style>
#left {
position:absolute;
left:10px;
top:30px;
}
#right {
position:absolute;
left:210px;
top:30px;
}
</style>
<html xmlns="http://www.w3.org/1
<head runat="server">
<title>Untitled Page</title>
</head>
<body style="height: 100%">
<form id="form1" runat="server">
<div style="width: 100%; height: 100%">
<div style="width: 200px; height: 100%; background-color: Black; float: left" id=left>
LeftPanel
</div>
<div style="width: 100%; height: 100%; background-color: Blue; float: left" id=right>
MainPanel
</div>
</div>
</form>
</body>
</html>
Main Topics
Browse All Topics





by: jason1178Posted on 2006-01-19 at 14:53:16ID: 15743983
Unless someone has better information, this has been hashed over in another thread:
e.com/Web/ Web_Langua ges/HTML/ Q _21689773. html
http://www.experts-exchang
The short answer is that you will have all sorts of trouble using divs when you mix pixels and percents. You're much better off using tables in this situation.