运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #example1 { border: 2px solid red; padding: 10px; direction: rtl; border-start-start-radius: 25px; } </style> </head> <body> <h2>border-start-start-radius: 25px:</h2> <div id="example1"> <p>With direction property value set to 'rtl', the start of inline direction is now on the right side of the element, and so the result of the border-start-start-radius property is also changed.</p> </div> </body> </html>