How to center html table?

前端 未结 5 2253
小鲜肉
小鲜肉 2020-12-19 23:08

Trying to create proper PDF document, using PHP and TCPDF.

Can you help me, how can I use writeHTML function to create and center table, in TCPDF?

Tryed wit

5条回答
  •  自闭症患者
    2020-12-19 23:25

    Never done anything like this however, this is the code you would need to center a table that is the cross browser compatible

    Invoice number:

    Client

    If pdfs support css i would advise styling the html elements using css

    table{
      border:1px solid black;
      margin:0px auto;
      text-align:center;
      width:200px;
    }
    

    Hope this helps!

提交回复
热议问题