odyniec / imgareaselect

ImgAreaSelect is a jQuery plugin for selecting a rectangular area of an image. It allows web developers to easily implement image cropping functionality, as well as other user interface features, such as photo notes (like those on Flickr).
http://odyniec.net/projects/imgareaselect/
686 stars 197 forks source link

Wrong outer area size #93

Open mixo opened 6 years ago

mixo commented 6 years ago

Hello Why outer area size is wrong? image

mixo commented 6 years ago

I found which caused the bug. Bootstrap overwriting box-sizing CSS property to border-box. I fixed it by adding CSS .imgareaselect-outer { box-sizing: content-box !important; }

akhyaruu commented 4 years ago

I found which caused the bug. Bootstrap overwriting box-sizing CSS property to border-box. I fixed it by adding CSS .imgareaselect-outer { box-sizing: content-box !important; }

thank you so much, it's solve my problem too :)