主頁
CSS
CSS 輪廓
輪廓偏移
Tryit:outline-offset 屬性
執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
改變主題,深色/淺色
轉到 Spaces
<!DOCTYPE html> <html> <head> <style> p { margin: 30px; background:yellow; border: 1px solid black; outline: 1px solid red; outline-offset: 15px; } </style> </head> <body> <h2>The outline-offset Property</h2> <p>This paragraph has an outline of 15px outside the border edge.</p> </body> </html>