Computer >> Computer tutorials >  >> Programming >> Javascript

How to set the shape of the border of the bottom-left corner in JavaScript DOM?


To set the shape of the border of bottom-right corner in JavaScript, use the borderBottomLeftRadius property. It allows you to add a rounded border.

Example

You can try to run the following code to learn how to set the shape of the bottom-left corner −

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            border: 2px dashed blue;
            width: 120px;
            height: 120px;
         }
      </style>
   </head>
   <body>
      <button onclick="display()">Set bottom-left border corner</button>
      <div id="box">
         <p>Demo Text</p>
         <p>Demo Text</p>
      </div>
      <script>
         function display() {
            document.getElementById("box").style.borderBottomLeftRadius = "30px";
         }
      </script>
   </body>
</html>