vertically alignment of a text inside a button with an image

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

In this CodePen you can see a

3条回答
  •  没有蜡笔的小新
    2021-01-24 21:12

    Try to do it like this way. There are other methods also, but this one is simple.

    button {
      width: 300px;
    }
    button img {
      float:left;
      width:20%;
    }
    button span {
      float:right;
      width:80%;
    }

提交回复
热议问题