首页
CSS
CSS object-position
尝试:使用 object-position 属性
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> img { width: 200px; height: 300px; object-fit: cover; object-position: 80% 100%; } </style> </head> <body> <h2>Using object-position</h2> <p>Here we will use the object-position property to position the image so that the great old building is in center:</p> <img src="paris.jpg" alt="Paris" width="400" height="300"> </body> </html>