Centering text within a button

后端 未结 3 2175
日久生厌
日久生厌 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:45

    See this fiddle

    Use

    display: table-cell;
    vertical-align: middle;
    

    in your CSS for .btn-work.

    So, the complete CSS would be like

    .btn-work {
        width: 250px;
        height: 50px;
        margin: 0 auto;
        padding: 0;
        display: table-cell;
        vertical-align: middle;
    }
    

    And, the output of the above one be like

提交回复
热议问题