blob: 0c28216daca8d69c411fd37764168375b5bd9a26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<head>
<style>
div { box-sizing: border-box;
width: 60px;
height: 20px;
border: 2px solid black;
background: green;
position: absolute;
top: 12px;
left: 12px;
border-radius: 4px 16px 4px 16px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|