Horje
Button transition Code Example
Button transition
div {
    font: 22px Arial;
    display: inline-block;
    padding: 1em 2em;
    text-align: center;
    color: white;
    background: red; /* default color */

    /* "to left" / "to right" - affects initial color */
    background: linear-gradient(to left, salmon 50%, lightblue 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
}
div:hover {
    background-position: left;
}




Css

Related
html css background linear-gradient Code Example html css background linear-gradient Code Example
css center table on page Code Example css center table on page Code Example
css change image width Code Example css change image width Code Example
ionic mobile always dark theme in web Code Example ionic mobile always dark theme in web Code Example
import tailwind Code Example import tailwind Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11