CSSを使用したアイコンを左側に配置する方法


方法1: バックグラウンドイメージを使用する方法

HTML:

<div class="icon-text">
  <div class="icon"></div>
  <div class="text">テキスト</div>
</div>

CSS:

.icon-text {
  display: flex;
  align-items: center;
}
.icon {
  width: 20px; /* アイコンの幅 */
  height: 20px; /* アイコンの高さ */
  background-image: url('アイコンの画像パス');
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px; /* アイコンの幅 + アイコンとテキストの間隔 */
}
.text {
  padding-left: 10px; /* テキストとアイコンの間隔 */
}

方法2: ::before 疑似要素を使用する方法

HTML:

<div class="icon-text">
  <div class="text">テキスト</div>
</div>

CSS:

.icon-text {
  position: relative;
  padding-left: 25px; /* アイコンの幅 + アイコンとテキストの間隔 */
}
.icon-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; /* アイコンの幅 */
  height: 20px; /* アイコンの高さ */
  background-image: url('アイコンの画像パス');
  background-repeat: no-repeat;
}
.text {
  padding-left: 10px; /* テキストとアイコンの間隔 */
}

方法3: flexboxを使用する方法

HTML:

<div class="icon-text">
  <div class="icon"></div>
  <div class="text">テキスト</div>
</div>

CSS:

.icon-text {
  display: flex;
  align-items: center;
}
.icon {
  width: 20px; /* アイコンの幅 */
  height: 20px; /* アイコンの高さ */
  margin-right: 10px; /* アイコンとテキストの間隔 */
}
.text {
  display: flex;
  align-items: center;
}

上記のコード例は、アイコンをテキストの左側に配置するための3つの一般的な方法を示しています。ご希望のスタイルに応じて適切な方法を選択し、必要に応じてスタイルを調整してください。