JSFiddle - React, Tailwind, and code Playground

by ruslyrossi

HTML

<table>
    <tr>
        <td>
            <img src="http://livedemo00.template-help.com/wt_49635/img/img11.jpg">
        </td>
        <td>
            <img src="http://livedemo00.template-help.com/wt_49635/img/img11.jpg">
        </td>
        <td>
            <img src="http://livedemo00.template-help.com/wt_49635/img/img11.jpg">
        </td>
    </tr>
</table>

CSS

@media screen and (max-width:760px) {
    body {
        background-color: #333;
    }
    table {
        width:100%;
    }
    tr td {
        display: block;
        width:100%;
    }
    tr td img {
        max-width: 100% !important;
        width: 100% !important;
    }
}
tr td {
    text-align:center;
}
tr td img {
    max-width:350px;
    width:90%;
}