<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/web-ext/projects/html-css-prj_innovation-cloud
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
Hello, it’s me again.
I’ve tried to change color of btn when I hover. (blue → white)
so I put code as below.
But it doesn’t work as I meant. It seems like some kinda force is preventing me from hustling.
Here is my code.
.btn {
background-color: black;
border: 1px solid black;
color: white;
text-decoration: none;
padding: 10px 40px;
}
.btn:hover {
background-color: white;
cursor: pointer;
transition: background .5s;
}
Thanks in advance again!