mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
20 lines
240 B
HTML
20 lines
240 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
div#blurred {
|
|
box-shadow: 0 0 50px 0 #000;
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
top: 30px;
|
|
left: 60px;
|
|
|
|
border-radius: 40px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="blurred"></div>
|
|
</body>
|
|
</html>
|