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