Dear Max
@MaxWinter
I think i can help š
When a Link has an image inside of it, we would have the 'nesting'
a img{
//insert css here
}
[image: 1648864825448-screen-shot-2022-04-02-at-2.58.26-pm-resized.png]
But in most cases with a link and text - the link would have a span element inside wrapping the text:
[image: 1648864890458-screen-shot-2022-04-02-at-2.57.54-pm-resized.png]
a span{
// insert css here
}
Because if this we can target only the links that have span within therefore only text links, e.g
a span {
color: #000000;
transition: ease-in-out 0.2s;
}
a span:hover {
color: #000000;
-webkit-filter: blur(10px); /* Safari */
filter: blur(20px);
transition: ease-in-out 0.2s;
}
Best wishes Max, have a great weekend
Richard