하루를살자

CSS - (1) : Selector & Declaration 본문

CSS

CSS - (1) : Selector & Declaration

Kai1996 2021. 12. 9. 23:30

 

선택자의 종류 

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 연습 게임 

https://flukeout.github.io/

- 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