Skip to content

Unordered list without bullets in HTML and CSS

 <ul style="list-style-type:none">
         <li>One</li>
         <li>Two</li>
         <li>Three</li>
      </ul>

or..

.li {
    list-style: none;
    margin-bottom: 1px;
    line-height: 1.8em;
}

Output

See also  Ransom Note - Leetcode Challenge - Python Solution

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.