Premium Only Content
Learn CSS: Add List Style in Website | Day 13 | Web development course for Beginner
Visit - www.skyhighes.com
Adding List Style in Website
There are two main ways to add list style in a website:
1. Using HTML:
Unordered lists: Use the <ul> tag for unordered lists. Each list item is defined within an <li> tag. You can customize the list style using the list-style-type property in CSS. Here's an example:
HTML
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
Use code with caution. Learn more
You can then style the list with CSS:
CSS
ul {
list-style-type: disc; /* This sets the list style to circles */
}
Use code with caution. Learn more
There are other list-style-type values available, such as square, decimal, lower-roman, etc.
Ordered lists: Use the <ol> tag for ordered lists. Each list item is still defined within an <li> tag. You can customize the start value and numbering style using attributes within the <ol> tag. Here's an example:
HTML
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
Use code with caution. Learn more
You can then customize the list with HTML attributes:
HTML
<ol start="5" type="a">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
Use code with caution. Learn more
This code will start the list numbering at 5 and use lowercase alphabetic characters.
2. Using CSS:
You can also use CSS to create custom list styles, including:
Changing the list marker type: Use the list-style-type property to specify a different marker type, such as squares, circles, or images.
CSS
ul {
list-style-type: square;
}
li::marker {
background-image: url("my-image.png");
}
Use code with caution. Learn more
Changing the list marker position: Use the list-style-position property to specify whether the marker appears inside or outside the list item.
CSS
ul {
list-style-position: outside;
}
Use code with caution. Learn more
Changing the list item indentation: Use the margin-left property to indent the list items.
CSS
li {
margin-left: 20px;
}
-
25:35
Athlete & Artist Show
14 hours agoYOU WON'T FINISH THE GAME!
140 -
13:22
Silver Dragons
16 hours agoAre You Prepared for What SILVER Will Do Next?
8953 -
9:20
Adam Does Movies
18 hours ago $0.10 earnedIT: Welcome To Derry Episode 4 Recap - What An Eyesore
2481 -
LIVE
LIVE WITH CHRIS'WORLD
10 hours agoTHE WAKE UP CALL - 11/24/2025 - Episode 12
309 watching -
LIVE
BEK TV
2 days agoTrent Loos in the Morning - 11/24/2025
163 watching -
LIVE
The Bubba Army
2 days agoF1'S NEWEST DRIVER? - Bubba the Love Sponge® Show | 11/24/25
1,744 watching -
19:15
Nikko Ortiz
19 hours agoOstrich Gets A Taste For Human Blood
55.2K16 -
32:42
MetatronHistory
1 day agoWas FASCISM Left wing or Right wing?
9.01K32 -
LIVE
Flex011
5 hours ago $0.01 earnedFrom Scrap to Stronghold: Our Base is Live!
78 watching -
9:52
MattMorseTV
14 hours ago $15.43 earnedTrump just GAVE the ORDER.
18.7K53