boxshadow-inset-neg-spread2.html (248B)
1 <html> 2 <head> 3 <style> 4 .test { 5 background-color: #fec; 6 display: inline-block; 7 width: 5em; 8 height: 5em; 9 } 10 11 .first { 12 box-shadow: inset 0 0 1px -3px rgba(0,0,10,0.25); 13 } 14 </style> 15 </head> 16 17 <body> 18 <div class="first test"></div> 19 </body> 20 </html>