我无法对图像下的文字或图像本身应用悬停效果。
这是代码(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;
}
如何应用一些悬停效果?
答案 0 :(得分:1)
.img-with-text {
text-align: justify;
width: 200px;
display:block;
}
.img-with-text:hover {
text-decoration:underline;
background-color:#ccc;
}
答案 1 :(得分:1)
答案 2 :(得分:0)
在<a href="#">your text</a>
标记中设置文本或使用JQuery
$("p").hover(
function () {
}
);
悬停在图像上的效果。
$("#photo").hover(
function () {
}
);