我在github上格式化README时遇到了一些问题。
这是原始自述文件:
| Italic | Block letters |
:-------------------------:|:-------------------------:
![](outputs/output_Biotouch/18-15_02-02-2018/Identification/ITALIC/ITALIC_movementPoints_cmc.png) | ![](outputs/output_Biotouch/18-15_02-02-2018/Identification/BLOCK_LETTERS/BLOCK_LETTERS_movementPoints_cmc.png)
![](outputs/output_Biotouch/18-15_02-02-2018/Verification/ITALIC/ITALIC_movementPoints_notbalanced_roc.png) | ![](outputs/output_Biotouch/18-15_02-02-2018/Verification/BLOCK_LETTERS/BLOCK_LETTERS_movementPoints_notbalanced_roc.png)
![](outputs/output_Biotouch/18-15_02-02-2018/Verification/ITALIC/ITALIC_movementPoints_notbalanced_frrVSfpr.png) | ![](outputs/output_Biotouch/18-15_02-02-2018/Verification/BLOCK_LETTERS/BLOCK_LETTERS_movementPoints_notbalanced_frrVSfpr.png)
它只是一个表格,其中包含对某些图像的相对引用。
引用的图片包含same dimensions。
为什么中心行中包含的图像较小?
答案 0 :(得分:5)
表格中的图片具有相同的尺寸。
"问题"是每个图像添加边框。偶数行上的边框是白色的,奇数行上的边框是浅灰色。
偶数行中的图像似乎没有边框,因为背景和边框都是白色的。
(感谢github支持团队的Shawna)
答案 1 :(得分:2)
您可以为此使用这些html标记
<table>
<tr>
<td> <img src="img1.png" alt="1" width = 360px height = 640px ></td>
<td><img src="img2.png" alt="2" width = 360px height = 640px></td>
</tr>
<tr>
<td><img src="./Scshot/cab_arrived.png" alt="3" width = 360px height = 640px></td>
<td><img src="./Scshot/trip_end.png" align="right" alt="4" width = 360px height = 640px>
</td>
</tr>
</table>
有关更多信息,您可以在这里Link