Answers for "how to remove ul style in css"

CSS
22

remove bullets from list css

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
Posted by: Guest on April-03-2020
3

css list no bullets

#my-list-element {
  list-style-type: none;
  padding-left: 0px;
}
Posted by: Guest on June-26-2020
11

remove list bullet css

list-style-type: none,
Posted by: Guest on February-25-2020
2

how to take away the dot in a ul

<ul style="list-style: none;">
 <li>List item with no bullet</li>
 <li>Second item</li>
</ul>
Posted by: Guest on May-15-2020
0

remove bullets from ul css

<!DOCTYPE html>
<html>
<head>
   <style>
   	ul.no_bullets{
    	list-style-type: none;
    }
   </style>
</head>
<body>
	<h2>Default List-</h2>
	<ul>
    	<li>Apple</li>
        <li>Mango</li>
        <li>Orange</li>
        <li>Banana</li>
    </ul>
    
    <h2>List without bullet points-</h2>
    <ul class="no_bullets">
    	<li>Apple</li>
        <li>Mango</li>
        <li>Orange</li>
        <li>Banana</li>
    </ul>
</body>
</html>
Posted by: Guest on September-06-2021

Browse Popular Code Answers by Language