border-right
Quick Summary for border-right
The border-right shorthand CSS property sets all the properties of an element's right border.
Code Usage for border-right
border-right-style: dotted; border-right: thick green; 
More Details for border-right

border-right

The border-right shorthand CSS property sets all the properties of an element's right border.

As with all shorthand properties, border-right always sets the values of all of the properties that it can set, even if they are not specified. It sets those that are not specified to their default values. This means that ...

border-right-style: dotted; border-right: thick green; 

... is actually the same as ...

border-right-style: dotted; border-right: none thick green; 

... and the value of border-right-style given before border-right is ignored. Since the default value of border-right-style is none, not specifying the border-style part results in no border.

Constituent properties

This property is a shorthand for the following CSS properties:

border-right-color border-right-style border-right-width

Syntax

border-right: 1px; border-right: 2px dotted; border-right: medium dashed green;  /* Global values */ border-right: inherit; border-right: initial; border-right: revert; border-right: unset; 

The three values of the shorthand property can be specified in any order, and one or two of them may be omitted.

Values

<br-width>

See border-right-width.

<br-style>

See border-right-style.

<color>

See border-right-color.

Formal definition

Initial valueas each of the properties of the shorthand:border-right-width: mediumborder-right-style: noneborder-right-color: currentcolor
Applies toall elements. It also applies to ::first-letter.
Inheritedno
Computed valueas each of the properties of the shorthand:border-right-width: the absolute length or 0 if border-right-style is none or hiddenborder-right-style: as specifiedborder-right-color: computed color
Animation typeas each of the properties of the shorthand:border-right-color: a colorborder-right-style: discreteborder-right-width: a length

Formal syntax

<line-width> || <line-style> || <color>

where <line-width> = <length> | thin | medium | thick<line-style> = none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset<color> = <rgb()> | <rgba()> | <hsl()> | <hsla()> | <hwb()> | <hex-color> | <named-color> | currentcolor | <deprecated-system-color>

where <rgb()> = rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )<rgba()> = rgba( <percentage>{3} [ / <alpha-value> ]? ) | rgba( <number>{3} [ / <alpha-value> ]? ) | rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? )<hsl()> = hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )<hsla()> = hsla( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )<hwb()> = hwb( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )

where <alpha-value> = <number> | <percentage><hue> = <number> | <angle>

Examples

Applying a right border

HTML
<div>   This box has a border on the right side. </div> 
CSS
div {   border-right: 4px dashed blue;   background-color: gold;   height: 100px;   width: 100px;   font-weight: bold;   text-align: center; } 
Results

Specifications

Specification
CSS Backgrounds and Borders Module Level 4 # border-shorthands

See also

border border-block outline

Last modified: Aug 12, 2021, by MDN contributors

Select your preferred language English (US)DeutschEspañolFrançais日本語한국어Polski中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
When I realized that, no individual step is hard in any process. Building this airport I'm standing in right now started with a guy writing the architectural plans on paper. That's not hard for him to do. Then laying the first beam isn't had. The whole thing is really hard. So, just take each step kind of piece by piece and when I was able to do that and stop trying to chase this prize and started putting in the work, things just started coming together.
Unknown
Random CSS Property

color-scheme

The color-scheme CSS property allows an element to indicate which color schemes it can comfortably be rendered in.
color-scheme css reference