You're trying to add a transparent background video (WebM with alpha channel) to your Webflow project, but it appears with a black background. This usually means the browser isn't honoring the transparency due to incorrect format or embedding method.
tag section).
Include a video tag with these attributes:
background: transparent;
in a parent containerExample attributes structure (omit full code per guidelines):
<video src="YOUR_WEBM_URL" autoplay loop muted playsinline style="width: 100%; height: auto;" loading="lazy"></video>
To display a transparent background video in Webflow, upload a VP9-encoded WebM with alpha to an external host, and embed it using a Custom Code Embed with the correct video attributes. Webflow's native video uploader won't preserve transparency.