You are here: Reference > CSS > properties > browser specific extensions > -moz-border-end-color

-moz-border-end-color property

Browser support:
Sets the color of the element's border end. Use the border-left-color property instead.
Equivalent to the border-left-color property, for a cross-browser solution use border-left-color instead.
JavaScript page for this property: MozBorderEndColor. You can find other example(s) there.

Possible values:

 One of the following values: 
color
The color of the border. For the supported color values, see the colors page.
inherit
Takes the value of this property from the computed style of the parent element.
transparent
Default. Underlying content will shine through.
Default: this property has no default value.

Example HTML code 1:

This example illustrates the use of the -moz-border-end-color property:
<head>
    <style>
        .example {
            border-top: 2px solid green;
            -moz-border-end-color: blue;
            -moz-border-end-width: 3px;
            -moz-border-end-style: solid;
        }
    </style>
</head>
<body>
    <div class="example">-moz-border-end-color: blue</div>
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content