CSS @scope is now also available in Safari TP 185 🤩
With scoped styling, you can be very specific about which elements you select without having to write overly-specific selectors or tightly coupling them to the DOM structure.
See this section of our #CSSWrapped2023 overview for quick intro on it: https://developer.chrome.com/blog/css-wrapped-2023#scope
```
@scope (.card) to ([data-component]) {
img { … }
}
```
If you want to know all the details – and there’s quite some – go read this article: https://developer.chrome.com/docs/css-ui/at-scope
