border-bottom-color
Quick Summary for border-bottom-color
The border-bottom-color CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties border-color or border-bottom.
Code Usage for border-bottom-color
/* <color> values */ border-bottom-color: red; border-bottom-color: #ffbb00; border-bottom-color: rgb(255, 0, 0); border-bottom-color: hsla(100%, 50%, 25%, 0.75); border-bottom-color: currentcolor; border-bottom-color: transparent;  /* Global values */ border-bottom-color: inherit; border-bottom-color: initial; border-bottom-color: revert; border-bottom-color: unset; 
More Details for border-bottom-color

border-bottom-color

The border-bottom-color CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties border-color or border-bottom.

Syntax

/* <color> values */ border-bottom-color: red; border-bottom-color: #ffbb00; border-bottom-color: rgb(255, 0, 0); border-bottom-color: hsla(100%, 50%, 25%, 0.75); border-bottom-color: currentcolor; border-bottom-color: transparent;  /* Global values */ border-bottom-color: inherit; border-bottom-color: initial; border-bottom-color: revert; border-bottom-color: unset; 

The border-bottom-color property is specified as a single value.

Values

<color>

The color of the bottom border.

Formal definition

Initial valuecurrentcolor
Applies toall elements. It also applies to ::first-letter.
Inheritedno
Computed valuecomputed color
Animation typea color

Formal syntax

<'border-top-color'>

Examples

A simple div with a border

HTML
<div class="mybox">   <p>This is a box with a border around it.      Note which side of the box is      <span class="redtext">red</span>.</p> </div> 
CSS
.mybox {     border: solid 0.3em gold;     border-bottom-color: red;     width: auto; }  .redtext {     color: red; } 
Result

Specifications

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

See also

The border-related CSS shorthand properties: border, border-bottom, and border-color. The color-related CSS properties for the other borders: border-right-color, border-top-color, and border-left-color. The other border-related CSS properties applying to the same border: border-bottom-style and border-bottom-width.

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...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

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
Nothing, to my way of thinking, is a better proof of a well ordered mind than a man's ability to stop just where he is and pass some time in his own company.
Seneca
Random CSS Property

scroll-padding-right

The scroll-padding-right property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
scroll-padding-right css reference