Text align vertical within li

前端 未结 5 858
予麋鹿
予麋鹿 2021-01-25 01:08
  • Catalogue
5条回答
  •  不知归路
    2021-01-25 01:46

    Demo jsBin

      ul li{
        list-style:none;
        display:inline-block;
        height:40px;
        line-height:40px;
      }
      li img{
        float:left;
        margin:5px;
      }
    

    You need to set a height and same line-height for your li element;
    for the containing images - set float : left

提交回复
热议问题