आकार बदलने का उपयोग करें संपत्ति यह निर्धारित करने के लिए है कि तत्व उपयोगकर्ता द्वारा आकार बदलने योग्य है या नहीं।
उदाहरण
आप यह निर्धारित करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं कि जावास्क्रिप्ट के साथ उपयोगकर्ता द्वारा कोई तत्व आकार बदलने योग्य है या नहीं -
<!DOCTYPE html> <html> <head> <style> #box { width: 350px; overflow: auto; background-color: orange; border: 3px solid red; } </style> </head> <body> <p>Click to set the right position.</p> <button type = "button" onclick = "display()"> Set Right Position </button> <div id = "box"> <p>This is a div. This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div. This is a div.<p> </div> <br> <br> <script> function display() { document.getElementById("box").style.resize = "both"; } </script> </body> </html>