div hover background-color change?

后端 未结 3 723
醉梦人生
醉梦人生 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:36
    .e:hover{
       background-color:#FF0000;
    }
    
    0 讨论(0)
  • 2021-01-31 07:37

    div hover background color change

    Try like this:

    .class_name:hover{
        background-color:#FF0000;
    }
    
    0 讨论(0)
  • 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;
    }
    
    0 讨论(0)
提交回复
热议问题