Display Image On Text Link Hover CSS Only

后端 未结 6 1550
感情败类
感情败类 2020-12-13 05:53

I have a text link. When the user hovers over the text link, I want an image to be displayed elsewhere on the page. I want to do this using css. I thought it could be done s

6条回答
  •  北荒
    北荒 (楼主)
    2020-12-13 05:59

    add

    .hover_img a:hover span {
        display: block;
        width: 350px;
    }
    

    to show hover image full size in table change 350 to your size.

提交回复
热议问题