Answers for "list-style-type as "disc" using inline CSS"

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

list-style-type flex

list-style applies to elements with display: list-item only – so by making your LI display: flex, you are removing the prerequisite for list-style to have any effect.
Posted by: Guest on August-02-2020

Code answers related to "list-style-type as "disc" using inline CSS"

Browse Popular Code Answers by Language