rgba(255, 255, 255, 0)
instead of transparent
for proper background rendering.-webkit-backdrop-filter
) in a custom embed if transparency issues persist.Safari may display a black background instead of transparent due to rendering inconsistencies with backdrop filtering or missing background-color: rgba(255, 255, 255, 0)
instead of transparent
. Here’s how to troubleshoot and fix the issue in Webflow.
transparent
alone; instead, set the background as rgba(255, 255, 255, 0)
..your-div-class
with the actual class name of your div.Safari may display a black background due to backdrop filtering issues or missing explicit transparency values. Ensure you use rgba(255, 255, 255, 0) instead of transparent, check backdrop filters, and use -webkit-backdrop-filter if needed.