DEV Community

Discussion on: Neumorphic Social Media Buttons in CSS

Collapse
 
jonrandy profile image
Jon Randy 🎖️ • Edited

There is an issue - by removing the outline there is no way of seeing if the button is active if you have got to it using the keyboard (tabbed to it for example). Could perhaps be solved by making the button appear in the 'down' state with :focus?

Collapse
 
kiddcreator profile image
kidd-creator

This might help though

button:active{
    transform: scale(0.89)
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
jonrandy profile image
Jon Randy 🎖️

Yeah - anything visual. Needs to be on :focus not :active though

Thread Thread
 
kiddcreator profile image
kidd-creator

okay thanks