I want to add :hover
pseudo-class to h1
. First, background-color
must be equal = 0% (I add a color for test, but at the end background-color will be white) then when hover to h1, background-color
must be gray and size to 100% 100%
. I can't do that. :')
.back{
border: 1px solid black;
width: 250px;
background-color: tomato;
height: 100px;
background-size: 0% 100%;
background-repeat: no-repeat;
transition: 1s all;
}
.back:hover{
background-color: gray;
background-size: 100% 100%;
}
<h1 class="back"></h1>