blob: 94c53fafa05e3f10b1c27ae0b58929988ca4be37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!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>
|