How to add the shadow of the button in css
This article mainly shows you "how to add the shadow of buttons in css". The content is simple and clear. I hope it can help you solve your doubts. Let me lead you to study and learn how to add the shadow of buttons in css.
Button shadow
We can use the box-shadow property to add shadows to the button:
Case study
.button1 {
Box-shadow: 0 8px 16px 0 rgba, 0 6px 20px 0 rgba
}
.button2: hover {
Box-shadow: 0 12px 16px 0 rgba, 0 17px 50px 0 rgba
}
Disable button
We can use the opacity property to add transparency to the button (which looks like the effect of the "disabled" property).
Tip: we can add the cursor property and set it to "not-allowed" to set a disabled image:
Case study
.disabled {
Opacity: 0.6
Cursor: not-allowed
}
The above is all the content of the article "how to add the Shadow of buttons in css". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!