维科纳蒂 »
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> #rcorners1 { border-radius: 50px / 15px; background: #73AD21; padding: 20px; width: 200px; height: 150px; } #rcorners2 { border-radius: 15px / 50px; background: #73AD21; padding: 20px; width: 200px; height: 150px; } #rcorners3 { border-radius: 50%; background: #73AD21; padding: 20px; width: 200px; height: 150px; } </style> </head> <body> <h1>Властивість border-radius</h1> <p>Еліптична межа - border-radius: 50px / 15px:</p> <p id="rcorners1"></p> <p>Еліптична межа - border-radius: 15px / 50px:</p> <p id="rcorners2"></p> <p>Еліптична межа - border-radius: 50%:</p> <p id="rcorners3"></p> </body> </html>