Learn HTML
CSS Introduction
CSS Basic Syntax
CSS Selector
CSS Units
CSS Text
CSS Border
CSS Outline
CSS Padding
CSS Margin
CSS Height & Width
CSS Overflow
CSS Resize
CSS Background
CSS Box Sizing
CSS Position
CSS Float
CSS Clear
CSS Clip Path & Shape Outside
CSS Display
CSS Media Queries
CSS Pseudo Classes & Elements
CSS Filter
CSS Transition
CSS Transform
CSS Animation
CSS List Style
CSS Table
CSS Scrollbar Styling
CSS Icon
CSS Cursor
CSS Variable & Calc
CSS User Select
CSS Flexbox
Learn Javascript
Learn Django
To style list we have four property
list-style-image: value image url;
This property is used to set image to the list.
list-style-position: 1.inside 2.outside(default);
This property is used to set position of the list.
list-style-type:type names,string,symbol;
For unordered list
we have value:
none, square, circle, disc(default), string(write in double or single quotation "" or ''), html symbol.
For order list we have value:upper-alpha, lower-alpha, upper-roman,lower-alpha, decimal(default), none.
Copy the given link:
https://www.toptal.com/designers/htmlarrows/symbols/
You will see various symbols there. Go and just copy any symbol and paste it in the position of
list-style-type value. But use a quotation and then inside the quotation paste the symbol.
Example:list-style-type:"ℎ";
list-style: list-style-type list-style-position list-style-image;
This is a short of techniques for all list property.