JSFiddle - React, Tailwind, and code Playground
by Ivo Tanev
HTML
<div class="text">
<p>Way 1: img src=".." width="200"</p>
<img src="http://www.wired.com/images_blogs/rawfile/2013/11/offset_WaterHouseMarineImages_62652-2-660x440.jpg">
<img src="http://www.wired.com/images_blogs/rawfile/2013/11/offset_WaterHouseMarineImages_62652-2-660x440.jpg" width="200">
</div>
<div class="text">
way2: css .resized {width: 200px;}
<img class="not-resized" src="http://www.wired.com/images_blogs/rawfile/2013/11/offset_WaterHouseMarineImages_62652-2-660x440.jpg">
<img class="resized" src="http://www.wired.com/images_blogs/rawfile/2013/11/offset_WaterHouseMarineImages_62652-2-660x440.jpg">
</div>
CSS
.resized {
width: 200px;
}