https://github.com/muhammadaziz01-dev/pizzabek
https://github.com/muhammadaziz01-dev/pizzabek
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/muhammadaziz01-dev/pizzabek
- Owner: muhammadaziz01-dev
- Created: 2023-12-06T16:18:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-07T17:02:57.000Z (over 1 year ago)
- Last Synced: 2025-01-27T08:42:37.438Z (4 months ago)
- Language: HTML
- Size: 1.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### lesson-5
1. Desktop first
2. Mobile first
3. max-width and min-width
4. @import css;
5. Project## Desktop first
```
@media only screen and (max-width: 600px) {...}
```
## Mobile first
```
@media only screen and (min-width: 600px) {...}```
## Desktop and Mobile (custom breakpoints)
#### Combining min-width and max-width media queries```
@media only screen and (max-width: 600px) and (min-width: 400px) {...}```
## PROJECT 😁