JavaScript – Change the Border Color of Paragraph
To change the border color of a paragraph using JavaScript, get the reference to the element, and assign the specific color value to the element.style.borderColor
property.
Example
</>
Copy
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<p id="myPara" style="border:2px solid green">Change the Border Color of Paragraph in JavaScript</p>
<button type="button" onclick="changeStyle()">Click Me</button>
<script>
function changeStyle(){
var element = document.getElementById("myPara");
element.style.borderColor = "red";
}
</script>
</body>
</html>
Conclusion
In this JavaScript Tutorial, we learned how to change the border color of a paragraph using JavaScript.