【发布时间】:2020-07-25 11:34:29
【问题描述】:
我在 Github markdown 中使用下面的行来获取对齐的图像,但是即使有空间,最后一张图像也总是会断行。
代码
# Example Img alightment #
<img align="left" src="https://github.com/hissain/CoronaTracker/blob/master/architecture/Screenshots/Android/Screenshot_Registration.png" alt="Android Registration" width="200"/>
<img align="center" src="https://github.com/hissain/CoronaTracker/blob/master/architecture/Screenshots/Android/Screenshot_Registration.png" alt="Android Registration" width="200"/>
<img align="right" src="https://github.com/hissain/CoronaTracker/blob/dev/architecture/Screenshots/Android/Screenshot_Registration.png" alt="Android Registration" width="200"/>
输出
如何将所有三个图像对齐在一行中?
参考:https://github.com/hissain/CoronaTracker/blob/dev/architecture/example.md
【问题讨论】:
标签: image github alignment markdown line-breaks