blob: 965f44432f867061e813b7fcdb669ddf2fc91dc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!doctype html>
<html><head>
<title>Elliptical outline</title>
<style>
div { width: 50px; height: 50px;
outline: 2px solid black;
border-radius: 10px / 20px;
}
</style>
</head>
<body><div></div></body></html>
|