edison xue
edison xue

Reputation: 1331

how to change the style of resizing?

I really don't like the resize propery of css3. Is there any way to change that?

Upvotes: 2

Views: 232

Answers (1)

Joseph Cho
Joseph Cho

Reputation: 4214

There's no default way to do this in css. However jQuery UI offers a solution if you use their resizable function. The e and w stands for east and west.

divElement.resizable({
    handles: 'e, w'
});​

Here's a working fiddle: http://jsfiddle.net/nick_craver/bx2mk/

Upvotes: 1

Related Questions