mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
432 B
HTML
21 lines
432 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
div { -moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
width: 60px;
|
||
|
height: 20px;
|
||
|
border: 2px solid black;
|
||
|
background: green;
|
||
|
position: absolute;
|
||
|
top: 12px;
|
||
|
left: 12px;
|
||
|
-moz-border-radius: 5px 20px 5px 20px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div></div>
|
||
|
</body>
|
||
|
</html>
|