user3219396
user3219396

Reputation: 83

Resizable div in bootstrap

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

Answers (1)

H. Mahida
H. Mahida

Reputation: 2366

Add the CSS with following style :

  sidebar{
          resize: both;
          overflow: auto;
         }

Upvotes: 3

Related Questions