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