crossoriginstylesheets
Crossoriginstylesheets refers to the use of the crossorigin attribute on link elements that load CSS from a different origin than the current document. This approach governs how the browser fetches the stylesheet and how associated cross-origin resources are treated. The attribute accepts the values anonymous or use-credentials.
When a cross-origin stylesheet is requested with crossorigin="anonymous", the browser performs a CORS request without credentials
Cross-origin stylesheets interact with other cross-origin resources, notably fonts and images referenced by the CSS via
Best practices typically favor using crossorigin="anonymous" for public CSS resources served from CDNs, unless there is
Browser support for the crossorigin attribute on link elements is widespread in modern browsers; however, behavior