
[#48] 화면 구조/스타일링 잡기
·
LG 유플러스 유레카 SW/HTML+CSS
CSS 작성 방법론🔹 BEM (Block, Element, Modifier)이름뜻예시Block독립적인 하나의 컴포넌트menu, button, cardElementBlock의 하위 구성 요소menu__item, button__iconModifierBlock이나 Element의 변형/상태menu__item--active, button--large 제목 설명 텍스트 버튼.card { padding: 20px; border: 1px solid #ccc;}.card__title { font-size: 24px;}.card__description { color: #666;}.card__button { background: white; border: 1px solid #000;}.card__butt..