Answers for "how to style li markers css"

CSS
22

remove bullets from list css

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

how do you make a list that lists its items with squares? css

ul.b {
  list-style-type: square;
}
Posted by: Guest on September-14-2020

Browse Popular Code Answers by Language