Change Button Font Color on Hover With “Hover color” declared on each button tag not in CSS

前端 未结 1 1897
借酒劲吻你
借酒劲吻你 2021-01-25 15:18

It\'s not a duplicate question - I don\'t want to simply change the font color in CSS.

My Issue:

I have products with colors. Blue, Red, Green, Yellow, Purple -

1条回答
  •  迷失自我
    2021-01-25 15:52

    Consider CSS variables like this:

    a.btn {
     padding:0 10px;
     color:#000;
     border:1px solid;
    }
    a.btn:hover {
      color:var(--h, yellow);
    }
    BUY
    BUY
    BUY
    BUY
    BUY 

    0 讨论(0)
提交回复
热议问题