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

mask-position

Description

The mask-position property for CSS specifies the initial position of the mask image.

Syntax

CSS

mask-position: value;

JS

object.style.maskPosition = "value";

Values

<'mask-position'> = <position>#
<position> = [ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]? | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ]
left

Left.

center

Center.

right

Right.

top

Top.

bottom

Bottom.

<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 (%).

Initial

0% 0%

Examples

1 · bottom

2 · center

3 · left

4 · length

5 · percentage

6 · right

7 · top

8 · JS