JSFiddle - React, Tailwind, and code Playground

by KyleMuir

HTML

<div style="background-color: black;">
    <table id="bottomBar">
        <tr>
            <td>Hello world</td>
        </tr>
    </table>
</div>

CSS

#bottomBar td {
    filter: progid:DXImageTransform.Microsoft.Gradient(starColorStr=#1c67c0, endColorStr=#03389d);
    padding: 10px !important;
    color: white;
    border: 2px solid white !important;
    font-weight: bold !important;
    cursor: pointer;
}

JavaScript

if (Function('/*@cc_on return document.documentMode===10@*/')()) { // this checks if it is IE 10
    $('#bottomBar td').css('filter', 'none');
    $('#bottomBar td').css('color', 'red');
    $('#bottomBar td').css('cursor', 'default');
}