Is there a CSS selector which targets only Safari, and one which targets only Chrome?
To give something to start from, this is the selector that I thought would select only Safari, unfortunately it turns out that it targets Chrome as well:
html[data-useragent*="Safari"] {
[...]
}