CSS border-bottom-style Property

You are Here:

Demo

border-bottom-style: dotted

CSS border-bottom-style Property

CSS border-bottom-style property sets the line style of an element's bottom border.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border-bottom-style: dotted; } </style> </head> <body> <h1>CSS border-bottom-style Property</h1> <div> This is div container. </div> </body> </html>

Syntax

Using CSS

element{ border-bottom-style: dotted; }

Using Javascript

object.style.borderBottomStyle="dotted";

Animatable

No, border-bottom-style property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS border-bottom-style property is none.

Property Value

The following table provides a list of all values for CSS border-bottom-style property.

ValueExplanation
none
hidden
dotted
dashed
solid
double
groove
ridge
inset
outset
The list of all values which can be used with css border-bottom-style property.

All in One

In the following example, we will demonstrate all values of CSS border-bottom-style property.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ padding: 10px; margin-bottom: 10px; } #point2{ border-bottom-style: dotted; } #point3{ border-bottom-style: dashed; } </style> </head> <body> <h1>CSS border-bottom-style Property</h1> <h2>border-bottom-style: dotted;</h2> <div id="point2"> This is div container. </div> <h2>border-bottom-style: dashed;</h2> <div id="point3"> This is div container. </div> </body> </html>

Using JavaScript

In the following example, we will demonstrate how to change the CSS border-bottom-style property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ padding: 10px; margin-bottom: 10px; border-bottom-style: dotted; } </style> </head> <body> <h1>CSS border-bottom-style Property</h1> <div> This is div container. </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("div")[0]; function myFunction(){ x.style.borderBottomStyle = "dashed"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author