I’m building a music player web application which implements the HTML5 audio tag, however would like it to look consistent across browsers – is it possible to define my own custom CSS? And how?
I’m building a music player web application which implements the HTML5 audio tag, however
Share
There is not currently any way to style HTML5
<audio>players using CSS. Instead, you can leave off thecontrolattribute, and implement your own controls using Javascript. If you don’t want to implement them all on your own, I’d recommend using an existing themeable HTML5 audio player, such as jPlayer.