Today I learn Selectors at fastcampus.
class
- class always can repeat.
- .class{in css}
- querySelector(.class) in JS
id
- id can't repeat.
- #id{in css}
- getElementId(id) in JS
Today I learn pathes at fastcampus.
Relative path
./
../
Absolute path
http
/
Today I learn selectors at fastcampus.
- universal Selector - * { color : tomato;}
- tag Selector - span{ color : tomato;}
- class Selector - .orange{ color : tomato;}
- id Selector - #apple{ color : tomato;}
Today I learn combinators at fastcampus.
- combinator - span.orange{ color : tomato;}
- child Combinator - ul > .orange{ color : tomato;}
- descendant Combinator - div .orange{ color : tomato;}
- adjacent Sibling Combinator - .orange + li { color : tomato;}
- general sibling Comninator - .orange ~ span{ color : tomato;}
Today I learn Pseudo-class Selector at fastcampus.
- A:active{color : tomato;}
- A:hover{color : tomato;}
- A:focus{color : tomato;}
Today I learn Pseudo-Elements Selector at fastcampus. You have to write content:" ";
- E::before{ content:"abcd"; color : tomato;}
- E::after{ content:"abcd"; color : tomato;}
Today I learn nth-child at fastcampus.

Today I learn inherit at fastcampus.
- If you write li{position:inherit;}, they have parent's property.
Today I learn !important at fastcampus.
- !important
- inline - <span style="...>
- id
- class
- tag
- universal selector
Today I learn display at fastcampus.
- block
- inline
- inline-block - they have width or height
This list includes some useful tutorials which are recorded by some IT specialists. Check VeePN for experienced programming tips and you can join online python classes.