Answers for "how to change list style"

CSS
6

css list style

ul { list-style: square; } /* solid square bullets */
ul { list-style: disc; }   /* solid circle bullets */
ul { list-style: circle; } /* hollow circle bullets */
ul { list-style: none; }   /* no bullets */
Posted by: Guest on May-28-2021
0

how to change only bullet color in css

li::before {content: counter(li); color: red;
  display: inline-block; width: 1em;
  margin-left: -1em}
Posted by: Guest on March-25-2020

Code answers related to "how to change list style"

Browse Popular Code Answers by Language