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

-moz-border-end-width property

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

Possible values:

 One of the following values: 
border width in non-negative length
The width of the border in length units. For the supported length units, see the length page.
inherit
Takes the value of this property from the computed style of the parent element.
medium
Default.
thick
Greater than the medium width.
thin
Less than the medium width.
Default: medium.

Example HTML code 1:

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

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content