For example, I want to add an internal and external shadow effect to a menu button, is it possible? I applied once but one removed the other!
For example, I want to add an internal and external shadow effect to a menu button, is it possible? I applied once but one removed the other!
Yes, just use a comma:
div {
width: 100px;
height: 100px;
box-shadow: 5px 5px 5px #000, inset 0 0 10px #000;
}
<div></div>