I'm looking to implement the HTML 5 audio tag that works on both Chrome and Firefox:
<audio controls preload="metadata" style=" width:50px; border-radius: 100px;margin-top: 15px; float: left;">
<source src="https://s4.uupload.ir/filelink/MeiZSg8dmNUl_a0ba664242/koe_no_katachi_a_silent_voice_-_lit_(feora_remix)_pe7w.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
However, when using Chrome, the play/pause button is missing unlike in Firefox where it shows a timeline. I attempted to remove the timeline with:
audio::-webkit-media-controls-timeline {
display: none !important;}
The three dots button contains the play, download, and mute buttons. I prefer not to use any JavaScript code for creating a play/pause button, rather sticking to CSS and HTML only. How can I make the play button visible at a lower width like 50px
in Chrome, similar to how it displays in Firefox?