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 |
Tags
- uri
- session 미종료
- 디자인 패턴
- 귀납
- Google Cloud
- 생성 모델
- public key
- tmux
- Vertex AI
- DeepLearing.AI
- ARIMA
- Transductive Learning
- Design Patterns
- PSNR
- mode collapse
- cam
- posterior collapse
- ChatGPT
- Grad-CAM
- SSIM
- 생성 모델 평가
- python3
- Inductive Learning
- prompt engineering
- 연역
- url
- GCP
- 대칭키
- deepseek
Archives
- Today
- Total
데이터 과학 노트
CSS 본문
CSS: Cascading Style Sheets
Prerequisite
- HTML, inline, block
Selector (선택자)
기본 선택자
- 전체 선택자 (universal)
*
- 태그 선택자 (tag)
elementname
- 클래스 선택자 (class)
.classname
- ID 선택자 (id)
idname
- 속성 선택자 (attribute)
[attr=value]
- 상태 선택자 (state)
:
그룹 선택자
- 선택자 목록
A, B
결합자
- 인접 형제 결합자
A + B
- 일반 형제 결합자
A ~ B
- 자식 결합자
A > B
B
가A
의 바로 밑
Display, Position
- Display
- inline
- block
- inline-block
- Position
- static
- relative
- absolute
- fixed
- sticky
FlexBox
- TODO