Resizable DIV
HTML
<div class="isResizable">
<input type="text" value="test"/>
The quick brown fox jumps over the lazy dog.</div>
CSS
.isResizable {
background: rgba(255, 0, 0, 0.2);
font-size: 2em;
border: 1px solid black;
overflow: hidden;
resize: both;
width: 160px;
height: 120px;
min-width: 120px;
min-height: 150px;
max-width: 400px;
max-height: 300px;
}