0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

cssでアイコンとテキストを横並びにする方法

Posted at

はじめに

cssでアイコンとテキストを横並びにする方法で躓いたので,備忘録としてまとめます.

前提

以下のようなコンポーネントで,ボタンの中にアイコンとテキストを横並びにすることを考えています.(jsxの書き方となっています.)

<button className="icon-button" onClick={onClick}>
  <span className="icon">{icon}</span>
  <span className="label">{label}</span>
</button>

display:flexを使用する

親要素にdisplay:flexをあて,align-items: center;とすることで,ボタンの中身のアイコンと文字を横並びで垂直方向を揃えることができます.

.icon-button {
  display: flex;
  align-items: center;
  
  .icon {
    display: flex;
    align-items: center;
  }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?