Attempting to align all three audio elements to the right using CSS has been a challenge. I can't seem to figure out what I'm doing wrong.
I've tried changing the 'audio' selector to .audio and #audio, as well as renaming it to 'music' since that is the name of my div. Unfortunately, none of these changes seemed to work.
audio
{
align:right;
}
<div id="Music" style="width:650px; background-color: #dcdcdc; border: #00008b 2px dashed;" >
<h1>My Favorite Music</h1>
<p>Jrad</p>
<audio controls style= "display:block">
<source type="audio/ogg"
src="media/jrad2019-07-13.cmc621.cmc64.sbd.matrix-t03.ogg">
</audio>
<p>Swagger by Joe Russo's Almost Dead</p>
<audio controls style= "display:block">
<source type="audio/mp3"
src="media/jrad2019-01-19.cmc621.cmc65xt.sbd.matrix-s1t01.mp3">
</audio>
<p>Marco Solo by Joe Russo's Almsot Dead</p>
<audio controls style= "display:block">
<source type="audio/mp3"
src="media/jrad2019-03-16.cmc621.cmc64.sbd.matrix-s1t04.mp3">
</audio>
<p>Jam by Joe Russo's Almost Dead</p>
<audio controls style= "display:block">
<source type="audio/mp3"
src="media/jrad2019-04-27.cmc621.cmc64.sbd.matrix-s1t01.mp3">
</audio>
</div>