我的 Github 存储库中有这些徽章:
如何使它们与左对齐(上面的 2)和右对齐?
它们的格式为![description](url)
我的 Github 存储库中有这些徽章:
如何使它们与左对齐(上面的 2)和右对齐?
它们的格式为![description](url)
一种方法是使用 html 表(因为 GFM 中的降价表不支持合并单元格)
例如,这似乎可以在README.md
文件中正确对齐图片。
<table >
<tr>
<td align="left"><img src="http://icons.iconarchive.com/icons/iconka/cat-commerce/48/add-icon.png"/></td>
<td align="right"><img src="http://icons.iconarchive.com/icons/iconka/cat-commerce/48/info-icon.png"/></td>
</tr>
<tr>
<td colspan="2"><img src="http://icons.iconarchive.com/icons/shwz/disney/512/pumbaa-icon.png"/></td>
</tr>
</table>
结果:
在你的情况下:
<table>
<tr >
<td><img src="https://api.travis-ci.org/axemclion/grunt-saucelabs.png?branch=master"/></td>
<td align="right"><img src="https://saucelabs.com/buildstatus/grunt-sauce"/></td>
</tr>
<tr>
<td colspan="2"><img src="https://saucelabs.com/browser-matrix/grunt-sauce.svg"/></td>
</tr>
</table>
这使: