How to create a hover effect in a newsletter?

后端 未结 2 1284
迷失自我
迷失自我 2021-02-05 14:04

I\'m creating a newsletter, and i want to have panels that change background-color on mouse over.
Seeing as the newsletter wont have a head, I am defining all styles inline.

2条回答
  •  独厮守ぢ
    2021-02-05 14:41

    I you are certain your css will not be removed, you can use a hover and a background-color property

    .panel:hover {
        background-color: #EFEFEF;
    }
    

    Also it does not seem possible to use a pseudo-selector in an inline style, so that might be a stopper:

提交回复
热议问题