Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- bootstrap
- typescript react
- createGlobalStyle
- input type=file
- dart 변수
- next.js css
- styled components
- react typescript
- react
- SCSS
- react env
- nextjs
- ngrok실행
- npm styled-reset
- ngrok설치
- nextjs 설치
- getModifierState
- nextjs .env
- github io
- There isn’t anything to compare
- 컨디셔널 렌더링
- API token
- fetch
- rewrites
- Git
- icon
- API 토큰
- github
- CSS
- git lab
Archives
- Today
- Total
목록css선택자 (1)
꾸준히 성장하는 개발자
css 선택자
전체 선택자 *{.....} 태그 선택자 태그명{....} 클래스 선택자 .클래스명{...} 아이디 선택자 # 아이디명{....} 일치 선택자 태그.클래스{....} (띄어쓰기 없음) 자식 선택자 .클래스명 or 태그등 >.클래스명 or 태그등{...} 하위 후손 선택자 클래스명 (띄어쓰기) .클래스{...} 인접 형제 선택자 ex) .orange + li{...} -> .orange 이 선택자의 다음 형제 요소하나를 선택 .... .... .... -> 이 태그 선택 .... 일반 형제 선택자 ex) .orange ~ li{...} -> .orange 이 선택자의 다음 형제 요소 모두 선택 .... .... .... -> 태그 선택 .... -> 태그 선택 가상 클래스 선택자 .box : hover{...
CSS
2022. 1. 26. 10:33