Vertically centering button using css

前端 未结 2 1827
太阳男子
太阳男子 2020-12-29 23:58

I am trying to make a simple input button center-align within a table cell.

My markup is:

2条回答
  •  情歌与酒
    2020-12-30 00:38

    If you make your button an inline element and add text-align: center to the parent td you should be fine.

    .tools {
      text-align: center;
    }
    
    .submit {
      display: inline;
    }
    XXXXXXXXX
    YYYYYYYY


    XXXXXXX
    YYYYYYY

提交回复
热议问题