I want to create a toggle button in html using css. I want it so that when you click on it , it stays pushed in and than when you click it on it again it pops out.
You can use the "active" pseudoclass (it won't work on IE6, though, for elements other than links)
a:active { ...desired style here... }