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;
}
-
0/2000
-
LIVE
Sean Unpaved
1 hour agoInteractive Draft Fit Blueprint: How 2025 NFL Picks Mesh with Their New Teams
704 watching -
1:03:04
Timcast
2 hours agoTrump SLAMS Amazon Tariff Pricing, Billionaire WARNS Shortages Coming Ami Economic Collapse
115K79 -
LIVE
Right Side Broadcasting Network
5 days agoLIVE: President Trump Holds a Rally Celebrating his First 100 Days in Warren, MI - 4/29/25
4,850 watching -
1:49:55
Steven Crowder
4 hours agoWhy Canada's Election Results Are A Golden Opportunity For Trump, America & Alberta
299K248 -
46:41
The White House
2 hours agoPress Secretary Karoline Leavitt Briefs Members of the New Media, Apr. 29, 2025
31.7K6 -
LIVE
The Dana Show with Dana Loesch
1 hour agoWH BLASTS AMAZON OVER TARIFF COST DISPLAY | The Dana Show LIVE on Rumble! APRIL 29TH 2025
404 watching -
LIVE
NEWSMAX
4 hours agoThe Rob Carson Show LIVE (04/29/2025) | Call 1-800-922-6680 | NEWSMAX Podcasts
658 watching -
1:03:24
Blockchain Basement
2 hours ago $0.25 earned🚨Arizona Bitcoin Reserve SIGNED! (Will Governor Strike IT DOWN?!)
6.74K -
LIVE
The Tom Renz Show
1 hour agoMAHA & Fighting Back With NHF
131 watching -
LIVE
TheAlecLaceShow
2 hours agoGuests: Rep. Brandon Gill & Joe Concha | Trump’s First 100 Days in Office | The Alec Lace Show
45 watching
0 Comments