Create an Unordered List Without any Bullets Using Css

admin_img Posted By Bajarangi soft , Posted On 09-10-2020

There are several ways to design these three types of lists with CSS. It could be numeric, round, square, alphanumeric or maybe even non-existent. It can also make a choice whether to align a list horizontally or vertically with the help of CSS.

Unordered List Without any Bullets

There are basically three different types of lists provided by HTML:

  • Ordered List
  • Unordered List
  • Description list
The Example of this  is to create an unordered list without any bullets using CSS.
Example 1:
<!DOCTYPE html>
<html>
<head>
    <title>Unordered list without using bullets</title>
    <style>
        ul {
            list-style-type:none;
        }
        h1 {
            text-align:center;
            color: #1b24db;
        }
        h3 {
            text-align:center;
        }
        body {
            width:60%;
        }
    </style>
</head>
<body>
<h1>Bajarangi Soft</h1>
<h3>Unordered list without using bullets</h3>
<p>Web Designing Courses lists:</p>
<ul>
    <li>Html</li>
    <li>Css</li>
    <li>Bootstrap</li>
    <li>JavaScript</li>
    <li>Laravel</li>
    <li>Computer Organization and Architecture</li>
    <li>Discreate Mathematics</li>
    <li>C Programming</li>
</ul>
</body>
</html>
Example 2:
<!DOCTYPE html>
<html>
<head>
    <title>Unordered list without using bullets</title>
    <style>
        ul {
            list-style-type:none;
        }
        ul li {
            display:inline;
        }
        h1 {
            text-align:center;
            color: #1b24db;
        }
        h3 {
            text-align:center;
        }
        body {
            width:60%;
        }
    </style>
</head>
<body>
<h1>Bajarangi Soft</h1>
<h3>Unordered list without using bullets</h3>
<p>Web Designing Courses lists:</p>
<ul>
    <li>Html</li>
    <li>Css</li>
    <li>Bootstrap</li>
    <li>JavaScript</li>
    <li>Laravel</li>
    <li>Computer Organization and Architecture</li>
    <li>Discreate Mathematics</li>
    <li>C Programming</li>
</ul>
</body>
</html>

Related Post