运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { background-color: lightgreen; inline-size: 70%; padding: 30px 10px; border-inline-end-width: 10px; border-inline-end-style: solid; border-inline-end-color: pink; } </style> </head> <body> <h2>border-inline-end-color: pink:</h2> <div> <p>The border-inline-end-color property defines the color of the border at the end in the inline direction.</p> </div> </body> </html>