Kennt jemand einen CSS-Code, der auch für Mozilla Firefox den Hintergrund des Audio-Players transparent darstellt?
datei.html
Code: Alles auswählen
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-panel {
background-color: #fff;
color: #a0276e;
}
</style>
</head>
<body>
<br><b>SWR3</b><br>
<audio controls preload="none"><source src="https://liveradio.swr.de/sw890cl/swr3" type="audio/ogg" />
</audio>
</body>
</html>