9
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Markdownで画像を横並びにする

Last updated at Posted at 2021-07-06

##背景

githubのプロフィールに表示されるREADMEを格好良くするため、https://shields.io で技術系アイコンを作成して並べようとしていました

 ー アイコン作成はこちらの記事を参考にさせて頂きました


##画像が縦並びになる
shields.ioで作成したアイコンのURLをそのまま貼り付けると、以下のように1つずつ改行されてしまう
スクリーンショット 2021-07-06 19.29.03.png

コードは以下

<img src="https://img.shields.io/badge/-Git-F05032?style=flat-square&logo=git&logoColor=white">
<img src="https://img.shields.io/badge/-Github-181717.svg?logo=github&style=flat-square">
<img src="https://img.shields.io/badge/-Mysql-4479A1.svg?logo=mysql&style=flat-square&logoColor=white">
<img src="https://img.shields.io/badge/-Firebase-FFCA28.svg?logo=firebase&style=flat-square&logoColor=white">
<img src="https://img.shields.io/badge/-Prettier-F7B93E?style=flat-square&logo=prettier&logoColor=white">
<img src="https://img.shields.io/badge/-Eslint-4B32C3.svg?logo=eslint&style=flat-square">
<img src="https://img.shields.io/badge/-R-276DC3.svg?logo=r&style=flat-square">
<img alt="Heroku" src="https://img.shields.io/badge/-Heroku-430098?style=flat-square&logo=heroku&logoColor=white">

#解決法

<p> で囲む
<p>
  <img src="https://img.shields.io/badge/-Git-F05032?style=flat-square&logo=git&logoColor=white" />
  <img src="https://img.shields.io/badge/-Github-181717.svg?logo=github&style=flat-square">
  <img src="https://img.shields.io/badge/-Mysql-4479A1.svg?logo=mysql&style=flat-square&logoColor=white">
  <img src="https://img.shields.io/badge/-Firebase-FFCA28.svg?logo=firebase&style=flat-square&logoColor=white">
  <img src="https://img.shields.io/badge/-Prettier-F7B93E?style=flat-square&logo=prettier&logoColor=white">
  <img src="https://img.shields.io/badge/-Eslint-4B32C3.svg?logo=eslint&style=flat-square">
  <img src="https://img.shields.io/badge/-R-276DC3.svg?logo=r&style=flat-square">
  <img alt="Heroku" src="https://img.shields.io/badge/-Heroku-430098?style=flat-square&logo=heroku&logoColor=white">
</p>

##結果
横並びにできた

スクリーンショット 2021-07-06 19.44.04.png

ちなみに、一つ一つのアイコンの間に隙間がありますが、ピタッとくっつけたい場合は各アイコンの<img>タグ同士を改行せず同じ行に続けて書くと出来ました

スクリーンショット 2021-07-06 19.49.27.png
こんな感じ

9
6
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
9
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?