Reputation: 1331
I really don't like the resize propery of css3. Is there any way to change that?
Upvotes: 2
Views: 232
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