list style none code example
Example 1: remove bullets from list css
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
Example 2: no li style
list-style: none;
Example 3: css style list
/* Choose the symbol, image or numeric for the bullet points on the list: */
/* SYMBOLS and NUMERICS */
ul {
list-style-type: square;
}
ol {
list-style-type:decimal;
}
/* IMAGES: */
li {
margin: 0;
padding: 15px 0 15px 60px;
list-style: none;
background-image: url("path_to_image");
background-repeat: no-repeat;
background-position: left center;
background-size: 30px;
}
/* Define the color of each bullet point on the list */
ul {
list-style: none; /* Remove list bullets */
padding: 0;
margin: 0;
}
li {
padding-left: 16px;
}
li:before {
content: "•"; /* Insert content that looks like bullets */
padding-right: 8px;
color: blue;
}
Example 4: list-style-type
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>
Example 5: html list type
/* Liste partielle des mots-clés utilisables */
list-style-type: disc;
list-style-type: circle;
list-style-type: square;
list-style-type: decimal;
list-style-type: georgian;
list-style-type: cjk-ideographic;
list-style-type: kannada;
/* Une chaîne de caractères */
/* Type <string> */
list-style-type: '-';
/* Un identifiant correspondant à */
/* une règle @counter-style */
list-style-type: custom-counter-style;
/* Valeur avec un mot-clé */
list-style-type: none;
/* Valeurs globales */
list-style-type: inherit;
list-style-type: initial;
list-style-type: unset;