I\'m creating a CSS button and I\'m trying to make an onclick effect: when the user clicks on the button it would push down the button text by 1px. My problem here is that it\'s
You should apply the following styles:
#button:active { vertical-align: top; padding: 8px 13px 6px; }
This will give you the necessary effect, demo here.