JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>jQuery IE Transforms Test</title>
</head>
<body>
    <div id="rotate" style="position: absolute; top: 100px; left: 100px; width: 100px; height: 100px; background-color: red;"></div>
</body>

JavaScript

$(document).ready(function() {
    var rotate = $("#rotate");
    console.log("Inital transform: ", rotate.css("-ms-transform"));
    rotate.css("-ms-transform", "rotate(45deg)");
    console.log("Post transform: ", rotate.css("-ms-transform"));
    rotate.css("msTransform", "rotate(45deg)");
    console.log("Post pre-camel transform: ", rotate.css("-ms-transform"));
});