How to make text over the image/button using html/css.
Eg: I have a button(Login Button). I want the text \"Login\" to be placed over that button. The text should be cen
Encapsulate the text between the button tags. In CSS, select the button and do something like this
#button { text-align: center; }