运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <head> <style> div.background { background: lightblue url(klematis.jpg) no-repeat center; background-size: cover; align-items: center; display: flex; justify-content: center; height: 400px; width: 400px; } div.transbox { background-color: rgba(255, 255, 255, 0.4); -webkit-backdrop-filter: sepia(100%); backdrop-filter: sepia(100%); padding: 20px; margin: 30px; font-weight: bold; } </style> </head> <body> <h1>The backdrop-filter Property</h1> <div class="background"> <div class="transbox"> <p>This is some text.</p> </div> </div> </body> </html>