📚 Reference


🔖 Index


style 속성 제거


<div id="test_1" style="margin:10px; border:3px solid #099; color:#f00;">테스트 1-1</div>
var test1 = document.getElementById("test_1");
test1.style.removeProperty("border");
test1.style.removeProperty("margin");
test1.style.removeProperty("color");