mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
301 B
HTML
18 lines
301 B
HTML
|
<!doctype html>
|
||
|
<html><head>
|
||
|
<title>Curved stripe border (HTML)</title>
|
||
|
<style>
|
||
|
body { margin: 0 }
|
||
|
div {
|
||
|
-moz-box-sizing: border-box;
|
||
|
width: 180px;
|
||
|
height: 180px;
|
||
|
border: 30px double black;
|
||
|
-moz-border-radius: 60px / 40px;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
</style>
|
||
|
</head><body>
|
||
|
<div></div>
|
||
|
</body></html>
|