जावास्क्रिप्ट में निचली सीमा का रंग सेट करने के लिए, बॉर्डरबॉटमकलर का उपयोग करें संपत्ति। यह आपको बॉर्डर के निचले हिस्से के लिए बॉर्डर का रंग सेट करने की अनुमति देता है।
उदाहरण
निचले बॉर्डर का रंग कैसे सेट करें, यह जानने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <head> <style> #box { border: 2px dashed blue; width: 120px; height: 120px; } </style> </head> <body> <button onclick="display()">Set border bottom color</button> <div id="box"> <p>Demo Text</p> <p>Demo Text</p> </div> <script> function display() { document.getElementById("box").style.borderBottomColor = "yellow"; } </script> </body> </html>