Search
 
SCRIPT & CODE EXAMPLE
 

CSS

media queries on mobile

@media only screen and (max-width: 600px) {
	...your css here and you're good to go!
}
Comment

@media tablet and mobile view

@media (min-width:320px)  {
  /* smartphones, iPhone, portrait 480x320 phones */ 
}
@media (min-width:481px)  {
  /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 
  wide. */ 
}
@media (min-width:641px)  {
  /* portrait tablets, portrait iPad, landscape e-readers,
  landscape 800x480 or 854x480 phones */ 
}
@media (min-width:961px)  {
  /* tablet, landscape iPad, lo-res laptops ands desktops */ 
}
@media (min-width:1025px) { 
  /* big landscape tablets, laptops, and desktops */ 
}
@media (min-width:1281px) {
  /* hi-res laptops and desktops */
}
Comment

PREVIOUS NEXT
Code Example
Css :: move to right css 
Css :: rotate text css 
Css :: meyer-reset css cdn 
Css :: mat card title center 
Css :: html table td spacing 
Css :: disable textarea resize 
Css :: place item center in css using grid 
Css :: how to align elements horizontally in css 
Css :: css flip svg 
Css :: transition all ease 0.3s 
Css :: button mouse icon hover css 
Css :: css rotate animation 
Css :: inner box shadow 
Css :: Truncate two row CSS (white space nowrap 2 lines) 
Css :: css start animation on hover 
Css :: hide cursor css 
Css :: gatsby hide scrollbar 
Css :: css input selector 
Css :: scss sass watch command line 
Css :: css trim text 
Css :: tailwind backdrop 
Css :: sticky footer bootstrap 3 
Css :: chrome button black white border 
Css :: html three dots ellipsis 
Css :: verticle line css 
Css :: css caret-color property 
Css :: how to center vertically and horizontally in css 
Css :: what is the username password for ftp lampp 
Css :: how to show ... after some long chars js html h1 
Css :: sidebar fixed when scrolling down css 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =