Lista CSS Usuń kropkę
#my-ul-element {
list-style-type: none;
padding-left: 0px;
}
garzj
#my-ul-element {
list-style-type: none;
padding-left: 0px;
}
list-style: none
ul {
list-style-type: none;
}
<ul style="list-style: none;">
<li>List item with no bullet</li>
<li>Second item</li>
</ul>