开发者

expandable css box

开发者 https://www.devze.com 2023-01-04 18:55 出处:网络
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 a

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; 
               }
0

精彩评论

暂无评论...
验证码 换一张
取 消