CSS - border-right-width

The border-right-width CSS property sets the width of the right border of a box.

Example

 

HTML

HTML
<table>
   <tr>
      <td id="b1" class="blu">
         <code>border-right-width: 40px</code></td>
      <td id="b2" class="blu">
         <code>border-right-width: thin</code></td>
      <td id="b3" class="blu">
         <code>border-right-width: medium</code></td>
      <td id="b4" class="blu">
         <code>border-right-width: thick</code></td>
   </tr>
</table>

CSS

CSS
#b1 { border-right-width: 40px;   }
#b2 { border-right-width: thin;   }
#b3 { border-right-width: medium; }
#b4 { border-right-width: thick;  }
.blu {
    border-right-color: #2266DD;
}
td {
    border: 1px solid #000000;
}

Result

Syntax  

CSS
border-right-width: 10em;    /* Any <length> value */
border-right-width: 3vmax;
border-right-width: 6px;

border-right-width: thin;    /* A keyword */
border-right-width: medium;
border-right-width: thick;

border-right-width: inherit;

Values

<br-width>
Is either a non-negative explicit <length> value or a keyword denoting the thickness of the right border. The keyword must be one of the following values:
thin
 
A thin border
medium
 
A medium border
thick
 
A thick border
The specification doesn't define precisely the thickness of each fo the keywords, which is therefore implementation specific. Nevertheless, it requests that the thickness does follow the rule thin ≤ medium ≤ thick, and is constant on a single document.
inherit
Represents the calculated value of the border-right-width of the parent's element.

Formal syntax

CSS
<a href="css/border-right-width#br-width"><br-width></a><p>where <br><code><br-width> = <a title="Possible values: a number followed by'em', 'ex', 'ch', 'rem', 'px', 'cm', 'mm', 'in', 'vh', 'vw', 'vmin', 'vmax', 'pt', 'pc' or 'px', like 3px, 1.5cm, -0.5em or 0" href="css/length"><length></a> <a title="Single bar" href="css/value_definition_syntax#single_bar">|</a> thin <a title="Single bar" href="css/value_definition_syntax#single_bar">|</a> medium <a title="Single bar" href="css/value_definition_syntax#single_bar">|</a> thick</code></p>

Description  

The border-right-width CSS property sets the width of the right border of a box.

Initial valuemedium
Applies toall elements. It also applies to ::first-letter.
Inheritedno
Mediavisual
Computed valuethe absolute length or 0 if border-right-style is none or hidden
Animatableyes, as a length
Canonical orderthe unique non-ambiguous order defined by the formal grammar

Browser Compatibility  

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 1.0 1.0 (1.0) 4.0 3.5 1.0 (85)
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support 2.3 1.0 (1.0) 6.0 11 1.0

See Also  

Specifications  

Specification Status Comment
CSS Backgrounds and Borders Module Level 3
The definition of 'border-right-width' in that specification.
Candidate Recommendation No significant change
CSS Level 2 (Revision 1)
The definition of 'border-right-width' in that specification.
Recommendation Initial definition

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/css/border-right-width

CSS CSS Borders CSS Property Reference