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

-moz-border-start property

Browser support:
Specifies the color, style and width properties for the start of the element's border. Use the border-right property instead.
Equivalent to the border-right property, for a cross-browser solution use border-right instead.
JavaScript page for this property: MozBorderStart. 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-start-color>
<-moz-border-start-style>
<-moz-border-start-width>
inherit

Description of values:

-moz-border-start-color
Specifies the color of the element's border start. Use the border-right-color property instead.
-moz-border-start-style
Specifies the style of the element's border start. Use the border-right-style property instead.
-moz-border-start-width
Specifies the width of the element's border start. Use the border-right-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-start property:
<head>
    <style>
        .example {
            border-top: 2px solid green;
            -moz-border-end: 4px solid red;
            -moz-border-start: 4px solid blue;
        }
    </style>
</head>
<body>
    <div class="example">-moz-border-start: 4px solid 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