I need help with making my HTML5 audio player responsive in Bootstrap. Here is the code I currently have:
<div class="col-sm-4 col-sm-offset-4">
<audio controls style="width: 600px;">
<source src="sample.mp3">
</audio>
</div>
Is there a way to ensure that this audio player remains responsive regardless of its content? I'm hoping to achieve this without relying on an external library if possible.
Thank you for any assistance!