Can CSS filters be applied solely to video content without affecting the media controls UI provided by the browser?
video:first-child {
filter: brightness(40%);
}
<video controls></video> vs.
<video controls></video>
When applying a CSS filter to a video element, it appears that the same effect is also applied to the media controls UI. Is there a way to avoid this and only affect the video itself?