How to get a

前端 未结 4 1598
耶瑟儿~
耶瑟儿~ 2021-02-20 06:31

I have below code in html page:

\"image_not\"

in css page the below code:

4条回答
  •  旧巷少年郎
    2021-02-20 06:52

    Try using the border property instead of the outline property. It should look like:

    img:hover {
        border: 2px solid blue;
    }
    

    Edit: Use hover instead of focus

提交回复
热议问题