mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-08 07:31:32 +00:00
12 lines
221 B
HTML
12 lines
221 B
HTML
<!doctype html>
|
|
<html><head>
|
|
<title>Elliptical border</title>
|
|
<style>
|
|
div { width: 50px; height: 50px;
|
|
border: 10px solid black;
|
|
border-radius: 10px / 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body><div></div></body></html>
|