fixed box shadow over inner elements code example
Example 1: inner box shadow
div {
box-shadow: inset 0 0 10px #000000;
}
Example 2: css box-shadow over other elements
myElm {
position: relative;
box-shadow: 1px 1px 2px black;
}
div {
box-shadow: inset 0 0 10px #000000;
}
myElm {
position: relative;
box-shadow: 1px 1px 2px black;
}