JSFiddle - React, Tailwind, and code Playground

by darcyclarke

JavaScript

(function(){
    var test = function(){
        var body = document.getElementsByTagName("body")[0],
            div = document.createElement("div");
            div.style.position = "fixed";
            body.appendChild(div);
        return (div.style.position == "fixed");
        };
    alert(test());
})();