.ui-resizable {
width:300px;
height:300px;
border:1px solid #444;
margin:10px;
position:relative;
}
.title {
height:50px;
line-height:50px;
text-align:center;
font-size:24px;
color:#fff;
background:#999;
}
.resizable-r {
width:10px;
height:100%;
background:red;
position:absolute;
right:0;
top:0;
cursor:e-resize;
}
.resizable-b {
width:100%;
height:10px;
background:green;
position:absolute;
left:0;
bottom:0;
cursor:s-resize;
}
.resizable-rb {
width:10px;
height:10px;
background:yellow;
position:absolute;
right:0;
bottom:0;
cursor:nw-resize;
}