Computer >> Computer tutorials >  >> Programming >> CSS

Usage of CSS marker-offset property


The marker-offset property allows you to specify the distance between the marker and the text relating to that marker.

Example

<html>
   <head>
   </head>
   <body>
      <ul style = "list-style: inside square; marker-offset:2em;">
         <li>LAN</li>
         <li>WAN</li>
      </ul>
   </body>
</html>