Set Style of Bottom Border with JavaScript



To set the style of the bottom border, use the JavaScript borderBottomStyle property. It allows you to add a bottom border.

Example

You can try to run the following code to set the style of the bottom border −

<!DOCTYPE html>
<html>
   <body>
      <div id="box">Demo Text</div>
      <br>
      <button onclick="display()">Click to set style of bottom border</button>
      <script>
         function display() {
            document.getElementById("box").style.borderBottomStyle = "dashed";
         }
      </script>
   </body>
</html>
Updated on: 2020-06-23T11:13:22+05:30

317 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements