Resize Test
by nevkatz
HTML
<div id="root">
<dv id="rightpanel">
<h2>
Title
</h2>
<textarea></textarea>
</dv>
CSS
#root {
position: relative;
font-family: Calibri;
}
#rightpanel {
position: absolute;
background-color: lightgrey;
right: 0px;
resize: both;
overflow: auto;
min-width: 200px;
max-width: 400px;
padding: 20px;
}
h2 {
padding: 0px;
margin-top: 0px;
margin-bottom: 10px;
}