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