Why does transition not work for a button?
The code looks completely normal and working, yet behaves as if all transitions are commented out. Here is the code i currently have for the button: .button { font-size: 19px; text-decoration: none; color: white; background: black; padding: 16px 38px; border-radius: 8px; border: 2px solid #0000; transition: all 500ms; } .button:hover { background: white; color: black;… Read More Why does transition not work for a button?