css - inset box shadow not working in my case? -


div{     height:100px;     width:100px;     background:pink;      box-shadow: 0px 0px 0px 3px #000; } 

above css worked when box-shadow: inset 0px 0px 0px 3px #000; wasn't work, tried box-shadow: 0px 0px 0px 3px #000 inset. idea?

try smaller number of parameters:

box-shadow: inset 0px 0px 3px #000; 

or specified engine:

-moz-box-shadow:    inset 0px 0px 10px #000000; -webkit-box-shadow: inset 0px 0px 10px #000000;  box-shadow:        inset 0px 0px 10px #000000; 

Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -