运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 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-start-style: dotted; } </style> </head> <body> <h2>border-block-start-style: dotted:</h2> <div> <p>With writing-mode property value set to 'vertical-rl', the border affected by the border-block-start-style property is on the right.</p> </div> </body> </html>