12.3. 옵션 A: CSS
예를 들어 Dashboard(대시보드) 페이지에서 최신 요소를 숨기십시오. 첫 번째 단계에 따라 CSS 경로를 다음과 같이 식별했습니다.
#three-scale .dashboard_bubble
경로가 같은 두 번째 박스이므로 "+" 선택기를 사용합니다. 이제 경로가 다음과 같이 표시됩니다.
.main_layout #three-scale .dashboard_bubble + .dashboard_bubble /* or */ .main_layout #three-scale .dashboard_bubble:nth-child(1)
디스플레이 속성을 none으로 변경하면 해당 상자가 표시되지 않습니다.
.main_layout #three-scale .dashboard_bubble:nth-child(1) {
display: none;
}