How to create: a list without bullet points
- Προηγούμενη σελίδα Ομάδα με μπέιζελ
- Πρόγραμμα Αστική κείμενη
Learn how to use CSS to create an unordered list without bullet points.
How to create a list without bullet points
list-style-type:none
Properties can be used to remove the default marks/bullet points from the list. Note that the list also has default margins and padding. If you want to remove these as well, please set margin:0
and padding:0
Add to <ul>:
Example
ul.no-bullets { list-style-type: none; /* Remove the bullet points */ padding: 0; /* Remove the inner padding */ margin: 0; /* Eliminate the outer margin */ }
Σχετικές σελίδες
Εκμάθηση:CSS λίστα
- Προηγούμενη σελίδα Ομάδα με μπέιζελ
- Πρόγραμμα Αστική κείμενη