CSS - Button smooth background color transition when hover

0 votes
198 views
added Oct 18, 2022 in CSS by lcjr First Warrant Officer (11,830 points)
.quote_button {
    -webkit-transition: .2s ease-in;
    transition: all ease-in .2s;
    &:hover {
        background-color: #000;
        text-decoration: none;
    }
}

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...