Highlight div box on hover

后端 未结 4 2067
暖寄归人
暖寄归人 2021-02-08 10:29

Say I have a div with the following attributes:

.box {
  width: 300px;
  height: 67px;
  margin-bottom: 15px;
}

How would I make it so that if

4条回答
  •  鱼传尺愫
    2021-02-08 10:57

    Linking a div has worked for me simply by wrapping it in an a tag. Here is an example below with Bootstrap classes:

    
    

    SEND

    Send candidate survey

    To change your div colour on hover add:

    div:hover {
    background-color: rgba(255,255,255,0.5);
    }
    

    to your CSS :)

提交回复
热议问题