运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { background-color: lightgreen; inline-size: 300px; padding: 10px; border-inline-width: 5px; writing-mode: vertical-rl; border-inline-style: dotted; } </style> </head> <body> <h2>border-inline-style: dotted:</h2> <div> <p>With writing-mode property value set to 'vertical-rl', the borders affected by the border-inline-style property is on the top and bottom.</p> </div> </body> </html>