运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #example1 { border: 2px solid red; inline-size: 300px; padding: 10px; writing-mode: vertical-rl; border-end-start-radius: 25px; } </style> </head> <body> <h2>border-end-start-radius: 25px:</h2> <div id="example1"> <p>With writing-mode property value set to 'vertical-rl', the corner affected by the border-end-start-radius property is on the bottom left.</p> </div> </body> </html>