Vertical align all(!) elements in TD?

前端 未结 11 1066
鱼传尺愫
鱼传尺愫 2021-01-31 14:28

I have a simple table with 1 TD with vertical-align:middle;. This TD contains an Image :



        
11条回答
  •  迷失自我
    2021-01-31 14:50

    DEMO

    just add this class:

    td *{
      vertical-align:middle
    }
    

    Edit:

    question is why when you add a pic to the td text goes bottom of pic and not any more middle of td.

    this is my answer:

    when you set td vertical-align to middle it should not set all content vertical-align to middle, they are still baseline. and when you add a pic to the text, the line height rise to the height of image and text is bottom of this height, so you need to set vertical-align to middle for fix this problem.

    here you can see what i said: DEMO

    and sorry about my bad english

提交回复
热议问题