CSS border-right-style Property

CSS border-right-style Property

CSS border-right-style Property

The border-right-style property in CSS defines the style of the right border of an element. It works alongside border-right-width and border-right-color to fully control the right border appearance.

1. Syntax

selector { border-right-style: value; }

Value Options:

ValueDescription
noneNo border (default).
solidA single, continuous border.
dottedA border consisting of dots.
dashedA border consisting of dashes.
doubleTwo solid borders with a small gap between them.
grooveA 3D grooved border.
ridgeA 3D ridged border (opposite of groove).
insetA 3D border that makes the element appear embedded.
outsetA 3D border that makes the element appear raised.
hiddenSimilar to none, but may still affect table layouts.

2. Example – Setting border-right-style

div { border-right-style: solid; border-right-width: 5px; border-right-color: blue; }
<div> This div has a solid blue right border with a width of 5px. </div>

✅ The right border will be solid, blue, and 5px wide.

3. Example – Using Different Border Styles

.box1 { border-right-style: dotted; } .box2 { border-right-style: dashed; } .box3 { border-right-style: double; } .box4 { border-right-style: groove; }

✅ Each element will have a different right border style.

4. Example – Removing the Right Border

div { border-right-style: none; /* Removes the right border */ }

✅ The right border will not be visible.

5. Best Practices

Always combine border-right-style with border-right-width and border-right-color for a visible border.
Use border-right shorthand to define all properties in one line:

border-right: 4px solid black;

Use none instead of hidden unless working with table layouts.

Soeng Souy

Soeng Souy

Website that learns and reads, PHP, Framework Laravel, How to and download Admin template sample source code free.

Post a Comment

CAN FEEDBACK
close