border-top-color
sets the color for the top border.
Item | Value |
---|---|
Inherited | No. |
Version | CSS1 |
JavaScript syntax | object.style.borderTopColor="blue" |
Applies to | All elements. |
border-top-color: color | transparent | inherit
where color
is a valid CSS color value.
The property values are listed in the following table.
Value | Description |
---|---|
color | Set the border color. |
transparent | Set the border color to transparent. Default value |
inherit | Inherit the border color from the parent element |
border-top-color |
Yes | Yes | Yes | Yes | Yes |
An example showing how to use border-top-color CSS property.
<!DOCTYPE HTML>
<html>
<head>
<style type='text/css'>
div {<!--from w w w .j av a2 s . c o m-->
border-top: 3px dashed darkkhaki;
border-top-color:red;
}
</style>
</head>
<body>
<div>java2s.com</div>
</body>
</html>