mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 02:13:08 +09:00
18 lines
333 B
HTML
18 lines
333 B
HTML
<!doctype html>
|
|
<html><head>
|
|
<title>Corners different</title>
|
|
<style>
|
|
.div1 { width: 50px; height: 50px;
|
|
border: 10px solid black;
|
|
border-radius: 10px 6px 6px 10px;
|
|
position: absolute;
|
|
background: black;
|
|
left: 50px;
|
|
top: 50px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="div1"></div>
|
|
</body></html>
|