CSS border-right Property

You are Here:

CSS border-right Property

CSS border-right property sets an element's right border. It is a shorthand property of the following CSS properties.

Example

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

Syntax

Using CSS

element{ //border-right: border-right-width border-right-style border-right-color; border-right: 1px solid red; }

Using Javascript

object.style.borderRight="1px solid red";

Animatable

Yes, border-right property is animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS border-right property is medium none black.

Property Value

The following table provides a list of values for CSS border-right property.

ValueTypeExplanation
border-right-widthOptionalSpecifies the width of the right border.
For example, 1px.
Default value is 'medium'.
border-right-styleRequiredSpecifies the style of the right border.
For example, solid.
Default value is 'none'.
border-right-colorOptionalSpecifies the color of the right border.
For example, red.
Default value is 'black'.

Using JavaScript

In the following example, we will demonstrate how to change the CSS border-right 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-right: 1px solid red; } </style> </head> <body> <h1>CSS border-right 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.borderRight = "5px dashed blue"; } </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