Make <div> resizeable
问题 Is there a way to make a <div> container resizeable with drag'n'drop? So that the user can change the size of it using drag'n'drop? Any help would really be appreciated! 回答1: The best method would be to use CSS3. It supported by at least Webkit and Gecko. According to the w3c spec: div.my_class { resize:both; overflow:auto; /* something other than visible */ } Webkit and Firefox do not interpret the specs the same way. In Webkit the size is limited to the width and height set. There's another