vertically alignment of a text inside a button with an image

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

In this CodePen you can see a

3条回答
  •  滥情空心
    2021-01-24 21:15

    You can use the following solution using flexbox:

    * {
      margin:0;
      padding:0;
      box-sizing:border-box;
    }
    button {
      align-items: center;
      display: flex;
      padding: 3px;
      justify-content: center;
      width: 300px;
    }
    button img {
      flex-shrink: 0;
      margin-right: 10px;
    }
    
    
    

提交回复
热议问题