---
title: "List Property using CSS3"  
description: "In this Article I am explaining the List property using CSS3."  
author: "Vijay Shukla"  
published: 2012-12-15  
updated: 2019-09-07  
canonical: https://www.mindstick.com/articles/1084/list-property-using-css3  
category: "css-css3"  
tags: ["css-css3"]  
reading_time: 3 minutes  

---

# List Property using CSS3

In this [Article](https://yourviews.mindstick.com/view/81489/kashmir-now-after-an-year-of-abrogation-of-article-370) I am explaining the List [property](https://www.mindstick.com/articles/198559/an-ownership-of-property-in-hua-hin) using CSS3.\

List Property is used for arranging information in lists can make it much easier to understand. List is like bullet and numbering in [MS Word](https://www.mindstick.com/forum/23166/preview-ms-word-excel-powerpoint-document-in-browser).

##### The below code make all types of list in your application:

```
<!DOCTYPE html>
<html>
<head>
<style>
ul.in
{
   list-style-position:inside;
   color: #cF6600;
}

ul.out
{
   list-style-position:outside;
   color: #cF6600;
}
ul.image
{
   list-style-image:url('1.png');
   color: #cF6600;
}
ul.circle
{
   list-style-type:circle;
   color: #cF6600;
}
ul.square
{
   list-style-type:square;
   color: #cF6600;
}
ol.roman
{
   list-style-type:upper-roman;
   color: #cF6600;
}
ol.alpha
{
   list-style-type:lower-alpha;
   color: #cF6600;
}
p
{
    color: #616191;
    font-weight:Bold;
}
</style>
</head>
<body>
<p>This list position is : inside:</p>
<ul class="in">
   <li>
          ASP.NET- Web Application.
   </li>
   <li>
          ADO.NET - Desktop Application.
   </li>
</ul>
<p> This list position is : outside:</p>
 <ul class="out">
   <li>
          ASP.NET- Web Application.
   </li>
   <li>
          ADO.NET - Desktop Application.
   </li>
</ul>
<p>This list bullet using image:</p>
<ul class ="image">
<li>mindstick INDIA</li>
<li>mindstick USA</li>
</ul>
<p>This list bullet using Circle:</p>
<ul class ="circle">
<li>mindstick INDIA</li>
<li>mindstick USA</li>
</ul>
    <p>This list bullet using Square:</p>
<ul class ="square">
<li>mindstick INDIA</li>
<li>mindstick USA</li>
</ul>
    <p>This list bullet using Roman: </p>
<ol class ="roman">
<li>mindstick INDIA</li>
<li>mindstick USA</li>
</ol>
    <p>This list bullet using Alpha:</p>
<ol class ="alpha">
<li>mindstick INDIA</li>
<li>mindstick USA</li>
</ol>
</body>
</html>
```

list-style-position: inside

This line will work for list position, in this property I will set the value as inside.

list-style-position: outside

This is also work for list position, in this property I will set the value as outside. And outside value make the list in my [application](https://www.mindstick.com/articles/12824/calculator-application-in-android) is outside

Below is [output](https://www.mindstick.com/interview/34427/explain-the-output-in-angular):

![List Property using CSS3](https://www.mindstick.com/mindstickarticle/5f2d14d2-a4cd-4144-b065-ad73c8190529/images/715d0975-b27e-4112-8b1f-02be2a25d183.png)**\**

##### List-style-image: url (image path):

**\**This line will make image able bullet in the application URL is provide the path of that image which is make as bullet.

Below is output

\
![List Property using CSS3](https://www.mindstick.com/mindstickarticle/5f2d14d2-a4cd-4144-b065-ad73c8190529/images/fb029811-fb9a-4a70-ab86-79124da8691e.png)

\

list-style-type:circle:

This line will make a Circle type of bullet in the application.

Below is output

![List Property using CSS3](https://www.mindstick.com/mindstickarticle/5f2d14d2-a4cd-4144-b065-ad73c8190529/images/533caf82-423a-422e-b3ef-d1753ea10899.png)

##### list-style-type:square:

This line will make a square type of bullet in the application.

##### Below is output

![List Property using CSS3](https://www.mindstick.com/mindstickarticle/5f2d14d2-a4cd-4144-b065-ad73c8190529/images/af19b637-45c4-4c47-9b92-d5beccbf0db2.png)

##### list-style-type: upper-roman :

This line will make a roman type of bullet in the application.

##### Below is output

![List Property using CSS3](https://www.mindstick.com/mindstickarticle/5f2d14d2-a4cd-4144-b065-ad73c8190529/images/1e5e6352-9402-4b38-80ee-8cf36a9fc403.png)

List-style-type: lower-alpha:

This line will make lower alphabetic type of bullet in the application.

##### Below is output

![List Property using CSS3](https://www.mindstick.com/mindstickarticle/5f2d14d2-a4cd-4144-b065-ad73c8190529/images/351b3cb4-e634-4b10-bf12-34c6026a8dda.png)

---

Original Source: https://www.mindstick.com/articles/1084/list-property-using-css3

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
