开发者

How can I set specific CSS classes for links which are images?

开发者 https://www.devze.com 2022-12-21 02:05 出处:网络
This seems painfully simple, but开发者_如何学C I can\'t work out how to do it: I want every link on my site to have a specific style on mouseover, so I use

This seems painfully simple, but开发者_如何学C I can't work out how to do it:

I want every link on my site to have a specific style on mouseover, so I use

a:hover {
 /*style goes here*/
}

The thing is, I don't want that style applied to links that are images, but

a:hover img {
 /*reset style*/
}

doesn't work. What should I try instead?


Your attempt is restyling the image element, not the a element, which is why it doesn't work (see here for an explanation of CSS selector syntax). Unfortunately, there is no syntax for selecting the parent of an element, so as others have said, you will have to create a special class for image links.


For links that are images, use a different css class instead of referencing all anchor tags.


The only way to do it is to put a class on the as that enclose imgs, like so:

<a href="link.htm" class="imagelink"><img src="image.jpg" alt="Image" /></a>

And then select it in CSS with

a.imagelink:hover {
    /* styles */
}


Try this:

a:hover {
 /*link style goes here*/
}

Select all images with links when hovered and set another style.

a:link:hover img {
    /* hovered, linked image styles */
}

This will select only images that have links and are hovered over.

Works in Weebly as well.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号