[CSS] Day 9: Mediaquery and how to use
Gives variable
i.e. If screen size is < 800px, and gives conditions like no borderlines or content should display a certain way
@media(max-width:800px){
#grid{
display: block; Chnaged display look
}
ol{
border-right:none; No borderline
}
hi{
border-bottom:none; No borderline
}
split right --> 화면 오른쪽으로 두개 나뉨
* How to use link
It will take forever to apply one code to rest if I have thousands of files to work
1. Copy style code and delete
2. Create new file: style.css and paste
3. <link rel="stylesheet" href="style.css">
4. Copy and replace this code instead of