Tables with ellipsis'ed content

HTML

<table border="1">
    <tr>
<td class="ellipsis address">
<div class="dropdown">
    <a href="#" data-toggle="dropdown" onclick="s_objectID=&quot;http://localhost:47284/reports/EmailReports/#_17&quot;;return this.s_oc?this.s_oc(e):true">6866 Bunkerhill Ln, Canton Twp</a>
</div>

</td>
    </tr>
        <tr>
<td class="ellipsis email break-word"><a href="mailto:[email protected]?subject=RE:200 Augusta National Ct, Franklin, TN"><span class="">[email protected]</span></a></td>
    </tr>
</table>

CSS

td {
    max-width: 100px;
    overflow: hidden;
}
.ellipsis {
    text-overflow: ellipsis;
    o-text-overflow: ellipsis;
    white-space: nowrap;
}