1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<!DOCTYPE html> <style> #outerDiv { width: 500px; height: 500px; background: lime; position: absolute; } #middleBlur { width: 300px; height: 300px; margin-left: 100px; margin-top: 100px; background: black; box-shadow: inset 0 0 20px 100px lime; } </style> <div id="outerDiv"> <div id="middleBlur"> </div> </div>