在CSS中的图像下悬停对文本的影响

时间:2013-08-17 07:32:17

标签: html css hover

我无法对图像下的文字或图像本身应用悬停效果。

这是代码(CSS):

#photo {
    float: left;
    width: 10px;
    margin-left: 35px;
    text-align: justify;
}

.img-with-text {
    text-align: justify;
    width: 200px;
}



.img-with-text img{
    display: block;
    margin: 0 auto;
}

如何应用一些悬停效果?

3 个答案:

答案 0 :(得分:1)

.img-with-text {
    text-align: justify;
    width: 200px;
    display:block;
}

.img-with-text:hover {
    text-decoration:underline;
    background-color:#ccc;
}

答案 1 :(得分:1)

喜欢这个

<强> DEMO

<强> CSS

#hover {
    display: none;
}

#image:hover + #hover {
    display: block;
}

答案 2 :(得分:0)

<a href="#">your text</a>标记中设置文本或使用JQuery

$("p").hover(
function () {

}
);

悬停在图像上的效果。

$("#photo").hover(
    function () {

    }
    );