Text over the image/button

后端 未结 8 1778
灰色年华
灰色年华 2021-01-22 02:43

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

8条回答
  •  独厮守ぢ
    2021-01-22 03:08

    Encapsulate the text between the button tags. In CSS, select the button and do something like this

    #button {
        text-align: center;
    }
    

提交回复
热议问题