CSS verändern die Farbe beim Schwebedruck
<!--
To change the color when hovering in CSS,
you will use the CSS selector called :hover
Example:
-->
<style>
button:hover {
background-color: darkred;
}
</style>
Lonely Ladybird