JSFiddle - React, Tailwind, and code Playground
by tomprogramming
HTML
<div id="styledDiv" style="max-width:200px; width:600px; background-color:#e3fdf2;padding:20px; margin:20px; border:1px dashed #ff0000;"><br/></div>
<button type="button" id="removestyle">Remove CSS</button>
<button type="button" id="removestyleforreal">Remove CSS For Real</button>
JavaScript
$("#removestyle").click(function(e){
$("#styledDiv").css('max-width',null);
});
$("#removestyleforreal").click(function(e){
$("#styledDiv").css('max-width','');
});