зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
345 B
HTML
26 строки
345 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<meta charset="utf-8">
|
|
<style>
|
|
|
|
.outer {
|
|
position: absolute;
|
|
width: 200px;
|
|
height: 150px;
|
|
overflow: hidden;
|
|
}
|
|
.inner {
|
|
position: absolute;
|
|
top: 3px;
|
|
left: 3px;
|
|
width: 200px;
|
|
height: 150px;
|
|
box-shadow: blue 0px 0px 20px inset;
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="outer">
|
|
<div class="inner"></div>
|
|
</div>
|