div hover background-color change?

后端 未结 3 732
醉梦人生
醉梦人生 2021-01-31 07:03

How can I make it act as if a line of div is anchor so when I hover on it it returns to red

CSS

.e
{
    width:90px;
    border-right:         


        
3条回答
  •  故里飘歌
    2021-01-31 07:45

    if you want the color to change when you have simply add the :hover pseudo

    div.e:hover {
        background-color:red;
    }
    

提交回复
热议问题