Advertisement
MayurTolani

Responsive Audio

Apr 19th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Responsive audio</title>
  6.     <style>
  7.  
  8. @media screen and (min-width:990px){
  9. audio{width:100%;height:200px;}
  10. }
  11.  
  12. @media screen and (max-width:990px){
  13. audio{width:100%;height:200px;}
  14. }
  15.  
  16.  
  17. @media screen and (max-width:700px){
  18. audio{width:100%;height:200px;}
  19. }
  20.  
  21. @media screen and (max-width:360px){
  22. audio{width:100%;height:200px;}
  23. }
  24.  
  25. </style>
  26. </head>
  27. <body>
  28.         <audio max-width="100%" height="auto" controls>
  29.             <source src="jbl.mp3">
  30.         </audio>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement