body{
font-family: Arial;
}
div{
color: red;
margin: 20px;
background: blue;
font-size: 17px;
}
<div id="div1">this should be styled with a blue background,
red text, and 17px Arial font</div>
<div id="div2">this should have no background, default font, etc. </div>
#div2
jQueryですべてのスタイルと継承されたすべてのスタイルを削除するにはどうすればよいですか?
すべてのスタイル #div2 のみを削除し、スタイル #div1 を維持します