JSFiddle - React, Tailwind, and code Playground

by jasonwilczak

HTML

<div id="aDiv" style="background-color: green;height:50px;">Hi</div>
    <div id="myDiv" style="background-color: green;">Hi</div>

JavaScript

(function() {
var myDiv = document.getElementById('myDiv');
myDiv.removeAttribute('style');
    
    var aDiv = document.getElementById('aDiv');
aDiv.style.removeProperty('height');
})();