vertically alignment of a text inside a button with an image

后端 未结 3 1739
野趣味
野趣味 2021-01-24 20:20

In this CodePen you can see a

3条回答
  •  天涯浪人
    2021-01-24 21:14

    can you try this https://codepen.io/anon/pen/qVKagg

    button {
      width: 300px;
      display: flex;
      text-align:left;
    }
    
    img {
      vertical-align: middle;
      margin-right:5px;
    }

提交回复
热议问题