expandable css box
How to create a floating box which can be expanded using an expand handle on the right bottom corner. The expanding should occur both vertical and horiz开发者_运维技巧ontally.
Perhaps you should look at the jQuery UI resizable and draggable, it does exactly what you want it to do.
Edit
In fact looking over your question again the jQuery UI dialog may even be what you're looking for.
You can use the resize property
div.resize { width: 100px;
height: 100px;
border: 1px solid;
resize: both;
overflow: auto;
}
精彩评论