运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #example { background-color: lightgreen; inline-size: 300px; padding: 10px; border-inline-style: solid; direction: rtl; border-inline-width: 5px 15px; } </style> </head> <body> <h2>border-inline-width: 5px 15px:</h2> <div id="example"> <p>With direction property value set to 'rtl', the thinnest border at the start in the inline direction is on the right side, and the thickest border at inline end is on the left side.</p> </div> </body> </html>