जावास्क्रिप्ट में दाएँ बॉर्डर की चौड़ाई सेट करने के लिए, borderRightWidth का उपयोग करें संपत्ति। इस गुण का उपयोग करके दाएँ बॉर्डर की चौड़ाई निर्धारित करें।
उदाहरण
जावास्क्रिप्ट के साथ सही बॉर्डर की चौड़ाई कैसे सेट करें, यह जानने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं।
<!DOCTYPE html> <html> <head> <style> #box { border: thick solid blue; width: 300px; height: 300px; } </style> </head> <body> <div id = "box">Demo Text</div> <br><br> <button type="button" onclick="display()">Change right border width</button> <script> function display() { document.getElementById("box").style.borderRightWidth = "10px"; } </script> </body> </html>