others-how to resize image by percent in markdown?
1. Purpose
In this post, I would demonstrate how to resize images by width and height percent when using markdown.
2. Solution
original:
![](https://raw.githubusercontent.com/bswen/pics/main/20220331095229.png)
original image shown:
solution:
<img src="https://raw.githubusercontent.com/bswen/pics/main/20220331095229.png" width="50%" height="50%">
solution image shown:
3. Summary
In this post, I demonstrated how to resize images by percentage in markdown. That’s it, thanks for your reading.