I have a div on my main pages called leftcontent. Leftcontent contains a js menu that controls local navigation thru my site.
At the very bottom of this div I am attempting to put a div that contains an input button that prints out the web pages content.
No matter what I do, this div is always right below the last item in the js menu and not all the way to the bottom of the parent container. I have been careful and made sure that I haven't accidentally put it in the js menus parent div.
Surely there is a way to get the printbutton div to the bottom? Any advice would be greatly appreciated.
At the very bottom of this div I am attempting to put a div that contains an input button that prints out the web pages content.
No matter what I do, this div is always right below the last item in the js menu and not all the way to the bottom of the parent container. I have been careful and made sure that I haven't accidentally put it in the js menus parent div.
Code:
<div leftcontent>
<div jsmenu>
<div button1>
</div>
<div button2>
</div>
</div>
<div printbutton>
</div>
</div>
Surely there is a way to get the printbutton div to the bottom? Any advice would be greatly appreciated.