mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
338 B
HTML
19 lines
338 B
HTML
<!doctype html>
|
|
<html><head>
|
|
<title>Corners different</title>
|
|
<style>
|
|
.div1 { width: 50px; height: 50px;
|
|
border: 10px solid black;
|
|
-moz-border-radius: 10px 6px 6px 10px;
|
|
position: absolute;
|
|
background: black;
|
|
left: 50px;
|
|
top: 50px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="div1"></div>
|
|
</body></html>
|