Hello everyone, I'm encountering a very strange issue. I have a project bundled with vitecss and I'm trying to style a textarea when the placeholder is shown like this:
textarea:placeholder-shown {
background: red;
}```
In Firefox it is styling it correctly, but chromium and webkit browsers don't. They don't style anything. 🤷♂️
When I build the css, I see the specific style existing: `textarea:-moz-placeholder-shown {background: red;} textarea:placeholder-shown {background: red;}` but still, chrome, edge and safari don't care about it. I also don't see it listed and overwritten somewhere in the inspector.
When I go and add the css into a `style` tag within the html, it works in all browsers. So basically I know the code is right. And I see it listed in the bundled style.css. But still, the majority of the browser just ignoring it.
You can also see the attached image, where from left to right you'll see the working example in Firefox, the bundled source code and safari, where its not working.
I'm pretty lost about this one. Am I overseeing something? Or could somebody hint me a way, how to further troubleshoot this one?