td colspan does not work while using jquery show/hide()

后端 未结 9 514
走了就别回头了
走了就别回头了 2021-01-13 16:14

I have a table of content

First Name Last Name Des
9条回答
  •  伪装坚强ぢ
    2021-01-13 16:51

    This is the problem with 'display:block'

    Please refer the below link http://thedesignspace.net/MT2archives/000376.html#.UUrg3FfCd1u

    If you are hiding tr, then use 'display:table-row' instead of 'display:block' to display that tr,

    If you are hiding td, then use 'display:table-cell' instead of 'display:block' to display that td

提交回复
热议问题