mouse hover background color button change using html and css

preview_player
Показать описание
using dom properties of HTML change the button background-color when mouse hover and CSS styles
Рекомендации по теме
Комментарии
Автор

Thank you for this clear and informative video!

stephanedreyfus
Автор

Good! But there is an easier way in CSS-file:
name:hover{
color: white;
background-color: cornflowerblue;
}

toivoitkonen