angular-resizable
angular-resizable copied to clipboard
Overflowing content when resizing
I like this library. However when I put any few paragraphs inside any of the containers and start resizing, the content starts overflowing out of the section tag. I have tried changing the overflow property but that didn't work. Example is here: http://codepen.io/joesaad/pen/jqLpdE
Facing the same problem. Tried putting !important
, but didnt work.
Late to the party :)
Adding
overflow: hidden;
overflow-y: auto;
to the section-tag should solve this problem (at least adding it to your code-pen worked).