text in table cells not centered as in headers

前端 未结 2 742
盖世英雄少女心
盖世英雄少女心 2021-01-26 16:52

CSS:

.one {
    width: 13%;
}

.two {
    width: 30%;
}

.three {
    width: 30%;
}

HTML:

2条回答
  •  春和景丽
    2021-01-26 17:14

    First of all you forgot to close the td after the first input.

     

You can add this css to make them center

td
{
    text-align:center;    
}

Have a look on this EXAMPLE

提交回复
热议问题