JSFiddle - React, Tailwind, and code Playground

by Rob Sedgwick

HTML

<table cellspacing="0" cellpadding="3" width="100%" style="height: 100%;">
    <tbody>
        <tr>
            <td class="postbody">
                <div class="messageseps">
                    <img class="imgcode" src="http://i43.tinypic.com/zya4af.jpg" alt="" />
                </div>
            </td>
        </tr>
    </tbody>
</table>

CSS

td.postbody {
    border: 0;
    overflow: hidden;
    vertical-align: bottom;
}
.messageseps {
    border-top: 1px dashed #000;
    padding: 5px;
    overflow:hidden; 
    white-space: nowrap;
}
table {
    height: 100%;
    table-layout: fixed;
}

img.imgcode {
/*    width: 100%;
    height: auto; */
}