Reputation: 83
I need to develop the layout as mentioned below in bootstrap.
<div id="header">Header</div>
<div id="content">
<div id="sidebar">Sidebar</div>
<div id="content">Content</div>
</div>
<div id="footer">footer</div>
The header should be navigation header. The sidebar should be resizable div.On resizing the sidebar content width should be adjusted according to that. The footer div is panel used to put the messages.
I have used the nav bar from bootstrap for displaying header. I am unable find the resizable div.
Upvotes: 2
Views: 9123
Reputation: 2366
Add the CSS with following style :
sidebar{
resize: both;
overflow: auto;
}
Upvotes: 3