執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { background-color: lightgreen; inline-size: 300px; padding: 10px; border-inline-width: 5px; border-inline-style: solid; direction: rtl; border-inline-end-color: hotpink; } </style> </head> <body> <h2>border-inline-end-color: hotpink:</h2> <div> <p>With direction property value set to 'rtl', the pink border at the end in the inline direction is on the left side.</p> </div> </body> </html>