2013-09-27 17 views

回答

2

你可以尝试加入这个CSS:

.ui-resizable-handle { 
     position: absolute; 
     font-size: 0.1px; 
     display: block; 
     margin: 15px 5px; 
} 

Demo Fiddle here

+1

谢谢@ Jai..nice answer – h2O

1

您可以在CSS中做到这一点,

.ui-wrapper { padding-bottom:0; padding-right:0;}

OR

你可以得到相同的结果在jQuery

$("#resizable").resizable().parent().css('padding','0');

相关问题