Given the HTML code below, I need to remove display flex
without impacting the final output. The use of display:flex
is causing issues on Internet Explorer and needs to be removed. Please note that I am unable to alter the structure of the HTML elements, only add a stylesheet.
<table id="TabsTable" width="100%" style="overflow: hidden !important;" cellpadding="0" cellspacing="1">
<tbody>
<tr>
<td class="vdcTabs" style="width: 100%;">
<span id="Tab_dlTabs" style="display: flex;">
<span>
<div class="ActiveTab">
<a id="lnktab1">Tab1</a>
</div>
</span>
<span>
<div class="VdcTab">
<a id="lnktab2" style="">Tab2</a>
</div>
</span>
<span>
<div class="VdcTab">
<a id="lnktab3" style="">Tab3</a>
</div>
</span>
</span>
</td>
</tr>
</tbody>
</table>