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> #example { background-color: lightgreen; inline-size: 300px; padding: 10px; border-inline-style: solid; direction: rtl; border-inline-end-width: 15px; } </style> </head> <body> <h2>border-inline-end-width: 15px:</h2> <div id="example"> <p>With direction property value set to 'rtl', the 15px wide border at the end in the inline direction is moved to the left side.</p> </div> </body> </html>