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
As I mentioned in my comment, you can have a div with background image.
HTML
Login
CSS
div{ background-image:url("http://www.noao.edu/image_gallery/images/d4/androa.jpg"); width: 200px; height: 100px; color: white; text-align: center; line-height: 100px; font-weight: bold; }
Fiddle