Text color change on hover over button

后端 未结 4 700
我寻月下人不归
我寻月下人不归 2021-01-12 04:29

I am trying to change the color of the text inside the button on hover.

I can make the button itself change color, but I want the button text to change color too.

4条回答
  •  Happy的楠姐
    2021-01-12 04:52

    If you want to change the color of the text, use the CSS color property, like

    input[type="submit"]:hover{
       color :#E6D332; 
    }
    

提交回复
热议问题