Copy HTML
<div class="backdrop-scene">
<div class="backdrop-panel"></div>
</div>Explore backdrop-filter with a background image and a translucent centered panel. Adjust chained filter functions and copy the generated HTML and CSS.
Text over image
<div class="backdrop-scene">
<div class="backdrop-panel"></div>
</div><div class="grid place-items-center inline-xl block-80 bg-[url(https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80)] bg-center bg-cover bg-no-repeat" >
<div class="inline-1/2 block-32 bg-[rgb(from_#ffffff_r_g_b_/_28%)] backdrop-blur-[10px]"></div>
</div>.backdrop-scene {
display: grid;
place-items: center;
inline-size: 36rem;
block-size: 20rem;
background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80" );
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.backdrop-panel {
inline-size: 50%;
block-size: 8rem;
background-color: rgb(from #ffffff r g b / 28%);
backdrop-filter: blur(10px);
}.backdrop-scene {
display: grid;
place-items: center;
inline-size: 36rem;
block-size: 20rem;
background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80" );
background-position: center;
background-size: cover;
background-repeat: no-repeat;
.backdrop-panel {
inline-size: 50%;
block-size: 8rem;
background-color: rgb(from #ffffff r g b / 28%);
backdrop-filter: blur(10px);
}
}