CSS border-right Property

CSS border-right Property

 

CSS border-right Property


The CSS border-right property sets the width, line style and color of the right border of elements. It is a shorthand property for specifying the values of the following properties:

  • border-right-width,
  • border-right-style,
  • border-right-color.

These three values of the shorthand property can be specified in any order, and one or two of them can be missed.

The value will be taken from the color property in the case of the color is not specified. If the color property is not defined, it will take the black color by default.

If the width is not specified, it will take the medium size of the element.

Default Valuemedium none currentColor
Applies toAll elements. It also applies to ::first-letter.
InheritedNo
AnimatableYes. The width and color are animatable.
VersionCSS1
DOM Syntaxobject.style.borderRight = "1px solid black";

Syntax

border-right: border-width border-style border-color | initial | inherit;

Example of the border-right property:

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      div {
        border-right: 5px solid #1c87c9;
        padding: 10px;
      }
    </style>
  </head>
  <body>
    <h2>Border-right example</h2>
    <div> This is a simple example for the border-right property.</div>
  </body>
</html>

The border-right property can be applied to different elements and can have various style values.

Example of the border-right property with multiple values:

<!DOCTYPE html>
<html>
  <head>
    <style>
      h1,
      p,
      div {
        padding: 10px;
      }
      h1 {
        border-right: 7px solid #8ebf42;
      }
      p {
        border-right: 5px dotted #1c87c9;
      }
      div {
        border-right: thick double #666;
      }
    </style>
  </head>
  <body>
    <h1>A heading with a solid green right border</h1>
    <p>A heading with a dotted blue right border.</p>
    <div>A div element with a thick double right border.</div>
  </body>
</html>

You can also create a box with the <div> element and set a background-color for your box, then add a right border to have a fancy box.

Example of using the border-right property to create a fancy box:

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      div {
        width: 300px;
        height: 80px;
        text-align: center;
        padding: 20px;
        background: #ccc;
        border-right: 5px solid #000;
      }
    </style>
  </head>
  <body>
    <div>This box has a solid border on the right side.</div>
  </body>
</html>

Values

ValueDescription
border-right-widthSets the right border width of an element. The default value is "medium". Required value.
border-right-styleSets the line style of the right border of an element. The default value is "none". Required value.
border-right-colorSets the color of the right border of an element. The default value is the current color of the text.
initialSets the property to its default value.
inheritInherits the property from its parent element.

Reactions

Post a Comment

0 Comments

close