<b>그림자: </b>
<input type="checkbox" id="shadow" />그림자넣기
$("#shadow").click(function () {
if ($(this).is(":checked"))
$("div.right").css("box-shadow", "10px 10px 10px gray");
else $("div.right").css("box-shadow", "");
})
parents( ) 부모태그 / siblings( ) 형제태그 / children( ) 자식태그
$("div.one div.hana").siblings().css("color", "red");
$("div").children("div.hana").css("text-decoration", "underline");
$("div.hana").next().next().css("background-color", "orange");
$("div.two").find("h3").css("border", "2px solid pink");