avg css code example
Example 1: invert css
.image {
filter: invert(1);
}
Example 2: css aufzählungszeichen entfernen
/*html*/
<ul>
<li>first item</li>
<li>second item</li>
</ul>
/*css*/
ul {
list-style-type: none;
}
.image {
filter: invert(1);
}
/*html*/
<ul>
<li>first item</li>
<li>second item</li>
</ul>
/*css*/
ul {
list-style-type: none;
}