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

-moz-border-end property

Browser support:
Specifies the color, style and width properties for the end of the element's border, in a shorthand form. Use the border-left property instead.
Equivalent to the border-left property, for a cross-browser solution use border-left instead.
JavaScript page for this property: MozBorderEnd. You can find other example(s) there.

Possible values:

 One of the following values: 
 Any of the following values (use the space character to separate them, each value can be used only once): 
<-moz-border-end-color>
<-moz-border-end-style>
<-moz-border-end-width>
inherit

Description of values:

-moz-border-end-color
Sets the color of the element's border end. Use the border-left-color property instead.
-moz-border-end-style
Sets the style of the element's border end. Use the border-left-style property instead.
-moz-border-end-width
Sets the width of the element's border end. Use the border-left-width property instead.
inherit
Takes the value of this property from the computed style of the parent element.
Default: this property has no default value.

Example HTML code 1:

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

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content