Markdown里的图片并排显示
最近写文章的时候发现,在markdown里插入一些很长的图片的时候,会显得很不好看,于是去查了一下如何实现markdown里图片的并排显示,参考了下面博客内的内容,方法如下:
单张居中显示:
<center><img src="http://dreamofbook.qiniudn.com/Zero.png">
</center>
OR
<figure>
<img src=“http://xxx.jpg”>
</figure>
固定图片宽度/高度:
<img src="http://xxx.jpg" title="Logo" width="100" />
宽度是 Width,高度是 High。Title 为图片描述。
两张并排显示:
<figure class="half"><img src="http://xxx.jpg"><img src="http://yyy.jpg">
</figure>
三张并排显示:
<figure class="third"><img src="http://xxx.jpg"><img src="http://yyy.jpg"><img src="http://zzz.jpg">
</figure>
固定宽度,并排显示并居中
就是把上面的几个例子和起来,下面给出代码
<center class="half"><img src="http://xxx.jpg" width="300"/><img src="http://yyy.jpg" width="300"/>
</center>
参考资料
上面的基本是我在下面这个博客上看到的,非常不错,推荐给大家
Markdown 简明语法参考
以上,所有
2017/6/12
注意markdown不是完全等于html,两者只不过是可以嵌套,语法很像,但并不是两种语言。
https://blog.csdn.net/qq_36265860/article/details/109027958
https://blog.csdn.net/qq_32963855/article/details/106884124
https://blog.csdn.net/qq_43069920/article/details/103328359
https://blog.csdn.net/Lincain/article/details/89892249
https://blog.csdn.net/weixin_43343803/article/details/94329710
https://www.cnblogs.com/wybert/p/14191798.html
更多参考
https://www.jianshu.com/p/280c6a6f2594
https://www.cnblogs.com/pualus/p/8884080.html
https://www.dazhuanlan.com/2019/12/11/5df0b3055a025/
https://www.jianshu.com/p/59b2e251be2c
https://www.cnblogs.com/jaycethanks/p/12201959.html