top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Which property is used to specifies the distance between a marker and the text in the list in CSS?

0 votes
602 views
Which property is used to specifies the distance between a marker and the text in the list in CSS?
posted Jun 28, 2017 by Shyam Chakraborty

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

marker-offset

The marker-offset specifies the distance between a marker and the text in the list.

Syntax

marker-offset:<length> | auto | inherit

Values

length
The distance length between a marker and the text in the list.
auto
The browser will calculate and select an offset.

Example

/* Keyword value */
marker-offset: auto;

/* Length values */
marker-offset: 10px;
marker-offset: 2em;

/* Global values */
marker-offset: inherit;
marker-offset: initial;
marker-offset: unset;
answer Jun 29, 2017 by Deepa
...