I am using this CSS for one td
but it's not working for other browsers except IE.
.tStyle
{
padding-right: 2px;
padding-left: 2px;
padding-top: 8px;
background-color: #d2c297;
padding-bottom: 8px;
border-width: 2px;
border-style: outset;
}
<td style="width: 20%; vertical-align: top; display:inline; overflow:auto;" class="tStyle">Example</td>
Please help on this.
Try making td inline style display:inline to display:inline-block. And better to have all of your inline css in the class tStyle.