Increase div width with content
I have 2 divs aligned one below the other. They are nested inside another div as
<div id="site-wrapper"> <div id="user1"><div> <div id="footer"></div> </div> CSS is
#site-wrapper{ border: 1px solid; width: 1000px; height: 100%; margin-left: auto; margin-right: auto; } How to customize the user and footer so that when the content of user1 is expanded, the wrapper site will automatically expand
+4