پیشنمایش زنده
کد HTML
<button>
Button
</button>
کد CSS
button {
padding: 1em 2em;
font-size: 1em;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #504f4f;
border: none;
background: #e0e0e0;
-webkit-box-shadow: 10px 10px 30px #bebebe, -20px -20px 60px #ffffff;
box-shadow: 10px 10px 30px #bebebe, -20px -20px 60px #ffffff;
}
button:hover {
background: #e0e0e0;
-webkit-box-shadow: inset 10px 10px 30px #bebebe, inset -10px -10px 30px #ffffff;
box-shadow: inset 10px 10px 30px #bebebe, inset -10px -10px 30px #ffffff;
}