I am currently working with a basic layout on my webpage
<div id="content-wrap">
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<div id="content" style="height: 550px">
</div>
</form>
</div>
Here is the CSS associated with it:
#content-wrap
{
clear: both;
float: left;
width: 100%;
}
#content
{
text-align: left;
padding: 0;
margin: 0 auto;
height: 470px;
overflow: auto;
width: 760px;
}
The goal now is to have another div positioned next to "content", floating and fixed at 200px in width. How can I achieve this?
Thank you in advance for any assistance provided.