로그인 바로가기 하위 메뉴 바로가기 본문 바로가기
난이도
심화

웹 UI 개발

임시 이미지 [콘텐츠 설계] 조영광
http://www.boostcourse.org/web344/quiz/33562
좋아요 3484 수강생 13698

Q 캐스케이딩 퀴즈(단일선택, 100점)

Q. "index 1"의 폰트 색상으로 알맞은 것을 고르시오.

<div class="box" style="color: yellow">

<h1 class="title">title</h1>
<p class="desc">description</p>

<ul class="index" style="color: blue;">  

<li class="in_item in1">index 1</li>
<li class="in_item ">index 2</li>

</ul>

</div>

<style>

.box { color: red !important; }
.
index > .in_item { color: pink; }
div ul .in_item { color: orange; }
.in_item.in1 { color: black; }
p + ul.index 
{ color: yellow; }

</style>

제출 횟수 : 제한없음