主頁
CSS
CSS 圖片倒影
Tryit: 圖片向右反射
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題, 暗/亮
前往 Spaces
<!DOCTYPE html> <html> <head> <style> img { -webkit-box-reflect: right; } </style> </head> <body> <h1>CSS Image Reflection</h1> <p>Show the reflection to the right of the image:</p> <img src="img_tree.png"> </body> </html>