I'm dynamically creating a canvas element with a random width and height.
<div class="randBox">
<canvas width="250px" height="100px" id="box"></canvas>
<!--width and height of the canvas is dynamic. I've used a fixed size for this example.-->
</div>
When I use the jquery resizable handle
jQuery('#box').resizable({
handles: 'se'
});
css:
#box{
background-color: red;
}
.ui-resizable-se{
background-color: blue;
width: 10px !important;
height: 10px !important;
bottom: 0px !important; /* E.g.: I want this at -15px */
right: -5px !important; /* E.g.: I want this at -15px */
display: block !important;
}
The resizable handle is hidden. Basically it looks like the handles are cropped to the canvas size.
How do I make the resizeable handle completely visible?