목록2024/02/29 (2)
기초공사 (html,css,javascript)
html구조- 나누기-section과 article
// https://developing-move.tistory.com/30?category=884479 [HTML] Contents 구분(1) - header, footer, h1 ~ h6 ▶ 소개나 탐색을 돕는 그룹 일반적으로 사이트 가장 상단 부분에 bar가 있으면 header라고 지칭. 로고, 메뉴, 검색 바, 로그인/로그아웃, 회원가입 버튼 등으로 구성. 내에는 다른 나 가 자손으로 developing-move.tistory.com 사이트 https://velog.io/@oct14/HTML-section%EA%B3%BC-article%EC%9D%98-%EC%B0%A8%EC%9D%B4
academy/html
2024. 2. 29. 23:50
css-우선순위 .w-300보다 .header-menu-item.w-300이 더 높다.
아침메뉴 점심메뉴 저녁메뉴 아침메뉴w300 점심메뉴 저녁메뉴 위의코드에서 우선순위를 알아볼때 .header-menu-item { background-color: pink; } .header-menu-item.w-300 { background-color: yellowgreen; } .w-300 { width: 300px; background-color: blue; } 에서 제일 끝에 있는 .w-300 : blue 가 높아야 하는데. .header-menu-item.w-300 : yellowgreen 이 더 높다.
academy/html
2024. 2. 29. 16:17