border-right
Summary
Shorthand property that defines the border-width, border-style and border-color of an element’s right border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the right border — border-right-width, border-right-style and border-right-color.
Overview table
- Initial value
For style values, the initial value is none. For color values, the initial value is currentColor. For width values, the initial value is medium, which is computed as about 3px in most browsers.
- Applies to
- All elements
- Inherited
- No
- Media
- visual
- Computed value
- String representation “For <code>style … slucent colors.” is too long.
- Animatable
- Yes
- CSS Object Model Property
borderRight
- Percentages
- N/A
Syntax
border-right: border-width border-style color
border-right: inherit
Values
- border-width border-style color
- The
border-right
property can contain up to three components:
border-width
: This takes a numeric value with any of the standard length units.border-style
: This takes any of the range of style values available to the border-style property, which includesnone
,hidden
,dotted
,dashed
,solid
,double
,groove
,ridge
,inset
,outset
. For more details about each, see the border-style page.color
: This can take any valid CSS color as its value.
- inherit
- When we set the value to
inherit
, the element will inherit the border values set on its parent.
Examples
A simple example showing multiple <div>
s, identical in style except that they have different border-right
properties applied to them.
<div class="one"><p>One</p></div>
<div class="two"><p>Two</p></div>
<div class="three"><p>Three</p></div>
<div class="four"><p>Four</p></div>
<div class="five"><p>Five</p></div>
/**
* border-right example
**/
div {
width: 150px;
height: 50px;
margin: 1rem;
float: left;
}
p {
padding: 0.25rem;
}
.one {
/* The most basic border-top example you can show. */
border-right: 1px solid black;
}
.two {
/* If you don't explicitly set a color, currentColor is used, which
equates to the text colour of the element, in this case black. */
border-right: 4px dashed;
}
.three {
/* When no width is specified, the default width medium is used,
which computes to about 3px in most browsers */
border-right: dotted red;
}
.four {
/* When no border style is specified, the border won't appear,
as the default border style is none. */
border-right: 10px black;
}
.five {
/* A more interesting border example to round things off,
showing a basic border being set, and then the right
border being overridden */
border: 1px inset black;
border-right: 10px inset rgba(234,190,50,0.75);
}
Usage
* It is usual to use the border-right property to set the default state of a box's right border, and then override individual values using more specific propeties, such as border-right-width or border-right-color.
border-right
can be used as a divider between horizontally laid out items, such as a horizontal navigation menu, or table cells.
See also
Related articles
Border
border-right
Related pages
- CSSStyleDeclarationCSSStyleDeclaration
- currentStylecurrentStyle
- defaultsdefaults
- runtimeStyleruntimeStyle
- stylestyle
Reference
- borderborder
Other Resources
CSS Enhancements in Internet Explorer 6