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

overflow-clip-margin

Description

The overflow-clip-margin property for CSS specifies the overflow clip edge of the box.

Syntax

CSS

overflow-clip-margin: value;

JS

object.style.overflowClipMargin = "value";

Values

<'overflow-clip-margin'> = <visual-box> || <length [0,∞]>
<visual-box> = content-box | padding-box | border-box

Specifies the box edge to use as the overflow clip edge origin. If omitted, defaults to padding-box on non-replaced elements, or content-box on replaced elements.

content-box

Refers to the content box or content edge.

padding-box

Refers to the padding box or padding edge.

border-box

Refers to the border box or border edge.

<length>

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

Initial

0px

Examples

1 · length

2 · visual-box · border-box

3 · visual-box · content-box

4 · visual-box · padding-box

5 · JS