Set a custom background color to the button

2.5k Views Asked by At

What is the correct way to change the color of a button ? My button :

<button id="easy_mode" href="#gameZone" class="btn waves-effect waves-light spacing theme-color" >

Theme color:

.theme-color {
    background-color: #ee6e73;
}

.theme-color:hover {
    background-color: #F18B8F;
}

the button loses the color after it has been clicked. What am i missing ?

2

There are 2 best solutions below

0
On

It seems to be working fine. I'm guessing you made a small PEBKAC mistake somewhere. Might want to check your HTML and CSS real quick to see if there are no typos anywhere.

.theme-color {
    background-color: #ee6e73;
}

.theme-color:hover {
    background-color: #F18B8F;
}
<button id="easy_mode" href="#gameZone" class="btn waves-effect waves-light spacing theme-color">Click me!</button>

0
On
    <button id="easy_mode" href="#gameZone" class="btn waves-effect waves-light spacing theme-color" >text</button>



    .theme-color {
        background-color: #ee6e73;
        border:none;
        cursor:pointer;
    }
    .theme-color:hover {
        background-color: #ffffff;
        border:none;
        cursor:pointer;
    }

Try these html and css codes

You can check here https://jsfiddle.net/kyfycnn7/