vertical-align: middle doesn't work

前端 未结 4 1294
心在旅途
心在旅途 2020-12-03 09:26

The css property vertical-align: middle does not work in this example.

HTML:

Two line text&l
4条回答
  •  -上瘾入骨i
    2020-12-03 10:07

    You should set a fixed value to your span's line-height property:

    .float, .twoline {
        line-height: 100px;
    }
    

提交回复
热议问题