Highlight div box on hover

后端 未结 4 2070
暖寄归人
暖寄归人 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:55

    .box:hover {
        background: #999;
        cursor: pointer;
    }
    

    When you hover the background changes to the color you want and cursor becomes pointer. You can trigger an event with jQuery like so:

    $('.box').click(customFunction);
    

提交回复
热议问题