nus-cs2113-AY1920S2 / forum

4 stars 0 forks source link

Resizing local images in Markdown #110

Closed brandoncjh closed 4 years ago

brandoncjh commented 4 years ago

Hello, how can I resize images in Markdown? Several images are taking a lot of space in my PPP section. I tried the <img src + width> tags but it didn't work.

Any help would be appreciated!

A11riseforme commented 4 years ago

<img src="images/xxx.jpg" style="zoom:50%;" />

damithc commented 4 years ago

img width should work too.

<img src="https://www.comp.nus.edu.sg/~damithch/pages/images/guide-cover.png" width="200" />
<img src="https://www.comp.nus.edu.sg/~damithch/pages/images/guide-cover.png" width="400" />
brandoncjh commented 4 years ago

Noted, thank you for your help!