+ 2
Can Audio player be resized? If "Yes" please how?
<audio id="player" controls autoplay> <source src="crucified.mp3" type="audio/mpeg"></audio>
3 Antworten
+ 3
<!—See this code: Just use CSS width—>
<audio id="player" controls="autoplay">
<source src="crucified.mp3" type="audio/mpeg"></audio>
</audio>
<style>
#player {
width: 100%;
}
</style>
+ 1
Use the search bar Thanks so much
0
<audio id="player" controls="autoplay">
<source src="crucified.mp3" type="audio/mpeg"></audio>