CSS border-top-color PropertyS2C Home « CSS border-top-color Property
Definition
The CSS border-top-color property allows us to specify the top border colour for an element.
Applies To
All elements.
Property Values
color - Defines a colour for the top border.
Valid values for color keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, navy olive, orange, purple, red silver, teal, white and yellow.
Colours can also be expressed using hex notation or rgb formats.
inherit - The border-top-color properties are inherited from the parent element.
transparent - A transparent border that may have width.
Default Value
If a border colour is not specified user agents will use the value of the elements color property.
Inheritance
The border-top-color property is NOT inherited from the parent element unless specified using the inherit property value.
Browser Anomalies
IE5, IE6 and IE7 do not support the inherit property value.
IE8 does with a valid !DOCTYPE.
IE9+ supports the inherit property value.
Position In The Box Model
Example
<!DOCTYPE html>
<!-- Our HTML/CSS for the CSS border-top-color property follows -->
<html lang="en">
<head>
<title>CSS Reference - CSS border-top-color Property</title>
<!-- Valid values for CSS border-top-color Property are:
color, inherit and transparent.
-->
<style type="text/css">
/* Set a border and padding around images to see the
effects of changing the top border colour */
img {
padding: 10px;
border: 2px solid black;
}
/* This top border colour set to teal */
#img1 {
border-top-color: teal;
}
/* This top border colour set to lime */
#img2 {
border-top-color: #0f0;
}
/* This top border colour set to transparent */
#img3 {
border-top-color: transparent;
}
</style>
</head>
<body>
<h1>Looking at the CSS border-top-color Property</h1>
<p>The next image has a top border colour set to teal.
<img id="img1" src="https://server2client.com/images/shepherdspiesmall.jpg"
alt="Shepherds Pie">
</p>
<p>The next image has a top border colour set to lime.
<img id="img2" src="https://server2client.com/images/shepherdspiesmall.jpg"
alt="Shepherds Pie">
</p>
<p>The next image has a top border colour set to transparent.
<img id="img3" src="https://server2client.com/images/shepherdspiesmall.jpg"
alt="Shepherds Pie">
</p>
</body>
</html>
How It Looks
The results of using the border-top-color property with the values above will look something like the following: