Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
6
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
R
rsakhale.gitlab.io
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rohan Sakhale
rsakhale.gitlab.io
Commits
dcb7c23b
Commit
dcb7c23b
authored
Jan 31, 2017
by
Rohan Sakhale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minors in code
parent
f93a69f1
Pipeline
#6118685
passed with stage
in 3 minutes and 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
source/_posts/CSS-Media-Queries-for-Responsive-Development.md
...ce/_posts/CSS-Media-Queries-for-Responsive-Development.md
+6
-6
No files found.
source/_posts/CSS-Media-Queries-for-Responsive-Development.md
View file @
dcb7c23b
...
...
@@ -17,17 +17,17 @@ If you are looking for quite a standard and less complex solution, below listed
# Code
```
css
/* smartphones,
portrait iPhone, portrait 480x320 phones (Android)
*/
/* smartphones,
iPhone, portrait 480x320 phones
*/
@media
(
min-width
:
320px
)
{
}
/*
smartphones, Android phones, landscape iPhone
*/
@media
(
min-width
:
48
0
px
)
{
}
/*
portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide.
*/
@media
(
min-width
:
48
1
px
)
{
}
/* portrait tablets, portrait iPad,
e-readers (Nook/Kindle), landscape 800x480 phones (Android)
*/
@media
(
min-width
:
6
00
px
)
{
}
/* portrait tablets, portrait iPad,
landscape e-readers, landscape 800x480 or 854x480 phones
*/
@media
(
min-width
:
6
41
px
)
{
}
/* tablet, landscape iPad, lo-res laptops ands desktops */
@media
(
min-width
:
80
1px
)
{
}
@media
(
min-width
:
96
1px
)
{
}
/* big landscape tablets, laptops, and desktops */
@media
(
min-width
:
1025px
)
{
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment