JSFiddle - React, Tailwind, and code Playground

by Anchal Nigam

HTML

<div>
    <table border="1">
        <tr>
            <td>
                <img src="https://www.google.com/images/srpr/logo11w.png" />
            </td>
        </tr>
    </table>
</div>

CSS

div
{
    background-color: red;
    width: 100px;
    height: 100px;
}

table
{
    width: 100%;
    height: 100%;
}

img
{
    width: 100%;
    height: 100%;
}