HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

border-image-width

Description

The border-image-width property for CSS specifies offsets that are used to divide the border image area into nine parts.

Syntax

CSS

border-image-width: value;

JS

object.style.borderImageWidth = "value";

Values

<'border-image-width'> = [ <length-percentage [0,∞]> | <number [0,∞]> | auto ]{1,4}
<length-percentage> =
    <length> |
    <percentage>
<length>

Specifies the length using a number followed by a unit of measurement.

<percentage>

Specifies the percentage using a number followed by a percent sign (%).

<number>

An integer or zero or more decimal digits followed by a dot (.) followed by one or more decimal digits. The first character may be preceded by a sign (- or +). The last character may be succeeded by an exponent (e or E) and an integer.

auto

Automatically specified by the user agent.

Initial

1

Examples

1 · auto

2 · length

3 · number

4 · percentage

5 · JS