You are here: Reference > JavaScript > client-side > style handling > properties > browser specific extensions > MozBorderStartWidth

MozBorderStartWidth style property

Browser support:
Specifies or retrieves the width of the element's border start. Use the borderRightWidth property instead.
Equivalent to the borderRightWidth property, for a cross-browser solution use borderRightWidth instead.

Syntax:

object.MozBorderStartWidth;
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: -moz-border-start-width

Possible values:

The type of this property is string.
 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-start-width property:
<head>
    <style>
        .example {
            border-top: 2px solid green;
            -moz-border-start-color: blue;
            -moz-border-start-width: 5px;
            -moz-border-start-style: solid;
        }
    </style>
</head>
<body>
    <div class="example">-moz-border-start-width: 5px</div>
</body>
Did you find this example helpful? yes no

Example HTML code 2:

This example illustrates the use of the MozBorderStartWidth property in JavaScript:
<head>
    <script type="text/javascript">
        function ChangeBorder (selectTag) {
            // Returns the index of the selected option
            var whichSelected = selectTag.selectedIndex;

            // Returns the text of the selected option
            var selectState = selectTag.options[whichSelected].text;

            var div = document.getElementById ("myDiv");

            if ('MozBorderStartWidth' in div.style) {
                div.style.MozBorderStartWidth = selectState;
            } else {
                alert ("Your browser doesn't support this example!");
            }
        }
    </script>
</head>
<body>
    <div id="myDiv" style="border-left: 1px solid blue; -moz-border-start: 4px solid red;">
        Sample division with -moz-border-start
        </div>

    <select onchange="ChangeBorder (this);" size="5">
        <option selected="selected" />1px
        <option />3px
        <option />8px
        <option />15px
        <option />24px
    </select>
</body>
Did you find this example helpful? yes no

Supported by objects:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content