主页
CSS
CSS 图片反射
实践:向右反射图片
运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往空间
<!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>