Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Save Code
Ctrl+Alt+A
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
<!DOCTYPE html> <html> <head> <style> div { background-color: lightgreen; inline-size: 300px; padding: 10px; border-inline-end-style: solid; writing-mode: vertical-rl; border-inline-end-width: 5px; } </style> </head> <body> <h2>border-inline-end-width: 5px:</h2> <div> <p>With writing-mode property value set to 'vertical-rl', the border affected by the border-inline-end-width property is on the bottom.</p> </div> </body> </html>