I made a div re-sizable with custom handles. Everything is working fine, but was wondering if there is a way to modify the position of the "se" handle. It's default location is inside of the div while the other handles are positioned on the outside of the div. Here is an example:
You can override the css:
.ui-resizable-se {
right: -5px;
bottom: -5px;
}