主頁
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>