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
- NSManagedObject SubClass
- CoreData Concurrency
- 2022 부스트캠프
- Java
- LightWeight Migration
- 다익스트라 이해
- Raw value and Associated value
- CoreData Filter
- Persistent store Coordinator
- 트레일링 클로저
- 스위프트 클로저
- NSPredicates
- 1009번
- Clean swift
- iOS Static Library 사용하는방법
- Swift
- Associated Value
- persistentStoreCoordinator
- CoreData
- NSSortDescriptor
- codability
- CoreData Stack
- expensive operation
- Swift 고차함수
- iOS Static Library
- Swift LinkedList
- leetcode #01
- Swift closure
- 일급 객체
- dateFormatter
Archives
- Today
- Total
하루를살자
CSS - (1) : Selector & Declaration 본문
선택자의 종류
1. Tag => just type the name of tag
2. Class => use "." , can be used to represent a group of objects
3. ID => use "#", used to refer an unique element
Things learned
- ul li{} = 부모:ul, li:자손
- ul>li{} = '>' 의 뜻은 바로 밑에 있는 element 를 가르킴.
- ul, ol {
background-color: powderblue; } = ul 과 ol Tag 의 background color 을 동시에 바꿈
Usefull Resources
- CSS 연습 게임
- CSS cheatsheet
https://m.blog.naver.com/dongbak90/221964261113
'CSS' 카테고리의 다른 글
CSS- (3) : Cascading Priority (0) | 2021.12.11 |
---|---|
CSS- (2) : Properties 속성 - font (0) | 2021.12.10 |
Comments