Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <style> .elliptical { background-color: plum; padding: 30px; width: 250px; text-align: center; border: 2px solid #333; /* horizontal radius / vertical radius */ border-radius: 100px / 50px; } </style> </head> <body> <div class="elliptical">Elliptical Corners!</div> </body> </html>