怎么让里面的按钮显示在单元格中间

img

怎么让里面的“阅读服务条款,提交注册信息和重置”显示在单元格中间

1.text-align: center;
2.line-height:单元格高度;

水平居中加个 text-algin:center

垂直居中 楼上的行高家 textalign:center 也行
或者 flex布局 给 td加

{
            width: 400px;

            background: red;
            height: 50px;
            display: flex;
            align-items: center;
            /* center代表水平方向 */
            justify-content: center;
            /* center代表垂直方向 */
        }

找到单元格的样式加居中

用flex布局 display:flex;
水平居中 justify-content: center;
垂直居中 align-items: center;