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