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

border-block-end

Description

The border-block-end property for CSS is shorthand for border-block-end-color, border-block-end-style, and border-block-end-width.

Syntax

CSS

border-block-end: value;

JS

object.style.borderBlockEnd = "value";

Values

<'border-block-end'> = <'border-top-width'> || <'border-top-style'> || <color>
<'border-top-width'> = <line-width>
<line-width> = <length [0,∞]> | thin | medium | thick
<length>

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

thin

A thin line.

medium

A medium line.

thick

A thick line.

<'border-top-style'> = <line-style>
<line-style> = none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset
dashed

A dashed line. A series of square-ended dashes.

dotted

A dotted line. A series of round dots.

double

A double line. Two parallel solid lines with some space between them.

groove

A grooved line. Looks as if it were carved in the canvas.

hidden

A hidden line. Same as none, but has different behavior in the border conflict resolution rules for border-collapsed tables.

inset

An inset line. Looks as if the content on the inside of the border is sunken into the canvas.

none

No line.

outset

An outset line. Looks as if the content on the inside of the border is coming out of the canvas.

ridge

A ridged line. Looks as if it were coming out of the canvas.

solid

A single line.

<color>

Specifies the color using a keyword or a numerical specification.

Examples

1 · color

2 · line-style · dashed

3 · line-style · dotted

4 · line-style · double

5 · line-style · groove

6 · line-style · hidden

7 · line-style · inset

8 · line-style · none

9 · line-style · outset

10 · line-style · ridge

11 · line-style · solid

12 · line-width · length

13 · line-width · medium

14 · line-width · thick

15 · line-width · thin

16 · JS