Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. CSS
  3. Reference
  4. Properties
  5. border-right

border-right

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Theborder-rightshorthandCSS property sets all the properties of an element's rightborder.

Try it

border-right: solid;
border-right: dashed red;
border-right: 1rem solid;
border-right: thick double #32a1ce;
border-right: 4mm ridge rgb(211 220 50 / 0.6);
<section>  <div>    This is a box with a border around it.  </div></section>
#example-element {  background-color: #eeeeee;  color: darkmagenta;  padding: 0.75em;  width: 80%;  height: 100px;}

Constituent properties

This property is a shorthand for the following CSS properties:

Syntax

css
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: revert-layer;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>

Seeborder-right-width.

<br-style>

Seeborder-right-style.

<color>

Seeborder-right-color.

Description

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. Consider the following code:

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

It is actually the same as this one:

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

The value ofborder-right-style given beforeborder-right is ignored. Since the default value ofborder-right-style isnone, not specifying theborder-style part results in no border.

Formal definition

Initial valueas each of the properties of the shorthand:
Applies toall elements. It also applies to::first-letter.
Inheritedno
Computed valueas each of the properties of the shorthand:
Animation typeas each of the properties of the shorthand:

Formal syntax

border-right =
<line-width>||
<line-style>||
<color>

<line-width> =
<length [0,∞]>|
thin|
medium|
thick

<line-style> =
none|
hidden|
dotted|
dashed|
solid|
double|
groove|
ridge|
inset|
outset

Examples

Applying a right border

HTML

html
<div>This box has a border on the right side.</div>

CSS

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 3
# border-shorthands

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp