The border-right-width CSS property sets the width of the right border of a box.
| Initial value | medium |
|---|---|
| Applies to | all elements. It also applies to ::first-letter. |
| Inherited | no |
| Media | visual |
| Computed value | the absolute length or 0 if border-right-style is none or hidden
|
| Animation type | a length |
| Canonical order | the unique non-ambiguous order defined by the formal grammar |
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;
<br-width><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 |
thin ≤ medium ≤ thick, and is constant on a single document.inheritborder-right-width of the parent's element.<br-width>where
<br-width> = <length> | thin | medium | thick
<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>
#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;
} | 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 |
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|---|
| Basic support | 1.0 | (Yes) | 1.0 (1.0) | 4.0 | 3.5 | 1.0 (85) |
| Feature | Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | 2.3 | (Yes) | 1.0 (1.0) | 6.0 | 11 | 1.0 |
border-bottom-width, border-left-width, border-top-width, and border-width
border, border-right, border-right-style, and border-right-color.
© 2005–2017 Mozilla Developer Network and individual 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