The forums ran from 2008-2020 and are now closed and viewable here as an archive.
Home › Forums › CSS › Border Around Image Loading from a Specific URL
Hi
Can I give a border around images loading from a specific URL?
eg: If images are loading from aws and localhost on homepage, I want to add borders around images loading from aws.
Thank you
Technically yes, but it’s not great practice.
Check out https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors.
The one you’ll probably want is: /* elements with an href containing "example" / a[href="example"] { font-size: 2em; }
/* elements with an href containing "example" / a[href="example"] { font-size: 2em; }
Yes, but we need this for some testing of CDN. Thank you.