#HTML CSS BASIC HELP
1 messages · Page 1 of 1 (latest)
1 messages · Page 1 of 1 (latest)
First you going to give the button a class
HTML:
<button class="myButton">
Click here!
</button>
Then you going to make a css for that class
.myButton {
}
However you want to change it on hover so you have to add :hover
.myButton:hover {
background-color: #000000
}