I\'m trying to get a div with a button next to a parent div. Like this:
____________ |relative | | | | | | |_______ | |
Use position:fixed for the second div
position:fixed
HTML
zx Click
CSS
html, body{ height:100%; margin:0 } .main{ height:100%; width:50%; background:grey; } .fix{ position:fixed; top:50%; border:red solid 2px; background:yellow; left:50% }
DEMO