Background Image: Button

0
I have a usecase, where in  it a normal button when dragged down will display company theming. In this case i have to display the button with a background image and on hover another background image will be shown on button. How can i achieve this ?
asked
1 answers
1

.button{

    background-image: url(path/image1.png);

    &:hover{

        background-image: url(path/image2.png);

    }

}

in path specify your image path with name
 

answered