<!DOCTYPE html> <html> <head> <style> .exampleBlock{ width:100px; height:100px; background-color:lightblue; margin-left:10px; margin-top:10px; } </style> </head> <body> <div class="exampleBlock" style="border-radius:100%;"></div> <div class="exampleBlock" style="border-top-left-radius:100%;"></div> <div class="exampleBlock" style="border-radius:20px / 40px;"></div> <div class="exampleBlock" style="border-radius:40px / 20px;"></div> </body> </html>
Run
×
Share