Centering text within a button

后端 未结 3 2106
日久生厌
日久生厌 2021-02-12 11:52

I\'m learning Front end development and I\'m trying to code my first site using bootstrap. I got stuck on a pretty simple thing I guess. How do I center a text within a button

3条回答
  •  野的像风
    2021-02-12 12:57

    To center the text within the button. Use this code.

    .btn-work{ text-align: center; }
    

    To center the button, use a parent div to align it to center.

    CSS:

     div.parentElement{text-align: center;}
     .btn-work{ display: inline-block; }
    

    HTML:

    
    

    Full CSS:

    div.parentElement{text-align: center;}
    
    .btn-work {
        width: 250px;
        height: 50px;
        margin: 0 auto;
        padding: 0;
        display: inline-block;
        line-height: 50px;
        text-align: center;
    }
    

提交回复
热议问题