CSS Aufzhlungszeichen Entferner
/*html*/
<ul>
<li>first item</li>
<li>second item</li>
</ul>
/*css*/
ul {
list-style-type: none;
}
Maximilian Steiger
/*html*/
<ul>
<li>first item</li>
<li>second item</li>
</ul>
/*css*/
ul {
list-style-type: none;
}