JSFiddle - React, Tailwind, and code Playground
HTML
<article>
<div></div>
</article>
JavaScript
$('div').css({
// Works
'background-color': 'red',
// Doesn't work
'mso-inline-height': 'exactly'
});
var style = $('div').attr('style');
$('div').attr('style', style + ';mso-inline-height:exactly;');
alert($('article').html());