To embed a video from Dropbox in Webflow that works across Firefox and Safari, you need to get a direct video link and use it correctly in Webflow via an Embed element.
.mp4
or another browser-compatible format).https://www.dropbox.com/s/abcd1234/video.mp4?dl=0
).www.dropbox.com
to dl.dropboxusercontent.com
and remove the ?dl=0
:https://www.dropbox.com/s/abcd1234/video.mp4?dl=0
https://dl.dropboxusercontent.com/s/abcd1234/video.mp4
This gives you a direct-access link required for browser playback.
<video>
tag using the direct Dropbox URL:<video controls playsinline preload="auto" width="100%" height="auto"> <source src="https://dl.dropboxusercontent.com/s/abcd1234/video.mp4" type="video/mp4"> Your browser does not support the video tag. </video>
.mp4
format, which has the broadest support across Chrome, Safari, and Firefox.playsinline
and preload="auto"
to enhance mobile and performance behavior.To embed a Dropbox video in Webflow and ensure it plays in Firefox and Safari: get a direct .mp4 URL from Dropbox, embed it via a <video>
tag inside an Embed element, and verify format and access. Use .mp4
, and make sure Dropbox permissions allow public viewing.