How to center a checkbox in a table cell?

后端 未结 10 1338
盖世英雄少女心
盖世英雄少女心 2020-12-05 03:57

The cell contains nothing but a checkbox. It is rather wide because of text in the table header row. How do I center the checkbox (with inline CSS in my HTML? (I know))

10条回答
  •  [愿得一人]
    2020-12-05 04:08

    Make sure that your is not display: block;

    Floating will do this, but much easier to just: display: inline;

提交回复
热议问题