I want to be able to resize a div using resize feature in css. In my .css file I have:
#test {
    border: 2px solid;
    padding: 20px;
    width: 300px;
    resize: both;
    overflow: auto;
}
My div is the following:
<div id="test">Let the user resize both the height and the width of this div element.</div>
It works fine until I put my html in an iframe, there I can't resize the div. What's wrong?
PS: I dont' want to use jquery
 
    