diff --git a/scripts/audio.js b/scripts/audio.js
index a9a2985..e07a670 100644
--- a/scripts/audio.js
+++ b/scripts/audio.js
@@ -199,7 +199,9 @@ H5P.Audio.prototype.attach = function ($wrapper) {
     audio.style.width = '100%';
     if (!this.isRoot()) {
       // Only set height if this isn't a root
-      audio.style.height = '100%';
+      audio.style.height = (!!window.chrome && this.params.playerMode === 'full') ?
+        '54px' : // Chromium based browsers like Chrome, Edge or Opera need explicit default height
+        '100%';
     }
   }