Is there any method to modify Audio Control's UI in HTML file? I want to make the control's button bigger for mobile browser. I am playing with the following tutorial code:

<audio controls="controls">   
<source src="song.ogg" type="audio/ogg"/>   
<source src="song.mp3" type="audio/mpeg" /> 
Your browser does not support this audio 
</audio>
link|improve this question

40% accept rate
feedback

1 Answer

Take a look at this question: Is it possible to style html5 audio tag?

Basically you can't style the existing look, but you can create your own UI and use the Javascript API.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.