JSFiddle - React, Tailwind, and code Playground

by lborgman

HTML

<div id="top">
    <!-- Any image with size 240x80 -->
    <img id="image" src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTRGz5YyvkUpbro7B9tHmpM2wC0aObtdid_jLBcbeZ5w-4Rlh12Cw" />
</div>
<div id="bottom"></div>

CSS

div, img, body {
    margin: 0;
    padding: 0;
}
#image {
    width: 100%;
    height: auto;
}
#top {
    max-height: 100px;
    width: 100%;
    line-height: 0; /* the solution! */
}
#bottom {
    height: 200px;
    width: 100%;
    background: green;
}
body { background: yellow; }