Text over the image/button

后端 未结 8 1698
灰色年华
灰色年华 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 02:54

    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

提交回复
热议问题