2024-06-16

This commit is contained in:
2024-06-16 01:16:39 +09:00
parent d2e7f6ad44
commit e9af16eb7b
14 changed files with 262 additions and 3 deletions

View File

@@ -1,3 +1,17 @@
# Media Query
Start typing here...
```CSS
@media screen and (min-width: 600px) {
body {
color: blue;
}
}
```
```CSS
@media (orientation: landscape) {
body {
color: rebeccapurple;
}
}
```