आउटलाइन की चौड़ाई सेट करने के लिए, outlineWidth . का उपयोग करें संपत्ति। आप जावास्क्रिप्ट के साथ एक तत्व के चारों ओर रूपरेखा की चौड़ाई निर्धारित करने के लिए निम्नलिखित कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <head> <style> #box { width: 450px; background-color: orange; border: 3px solid red; margin-left: 20px; } </style> </head> <body> <p>Click below to add Outline Width.</p> <div id="box"> <p>This is a div. 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. This is a div.</p> <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p> </div> <br> <button type="button" onclick="display()">Set Outline Width</button> <br> <script> function display() { document.getElementById("box").style.outlineColor = "#5F5F5F"; document.getElementById("box").style.outlineStyle = "solid"; document.getElementById("box").style.outlineWidth = "7px"; } </script> </body> </html>