Advertisement
all2aller

iPhone CSS

Jan 30th, 2015
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.65 KB | None | 0 0
  1. /*----------------------------------------------------------------------------------*/
  2. /* Fix iPhone Style
  3. /*-----------------------------------------------------------------------------------*/
  4.  
  5. /* iPad Portrait & Landscape */
  6.  
  7. @media only screen
  8. and (min-device-width : 768px)
  9. and (max-device-width : 1024px) {
  10.  
  11.  
  12.  
  13. }
  14.  
  15. /* iPhone 5 Portrait & Landscape */
  16.  
  17. @media only screen
  18. and (min-device-width : 320px)
  19. and (max-device-width : 568px) {
  20.  
  21. }
  22.  
  23. /* iPhone Portrait & Landscape */
  24.  
  25. @media only screen
  26. and (min-device-width : 320px)
  27. and (max-device-width : 480px) {
  28.  
  29. }
  30.  
  31. // Questa è la regola:
  32.  
  33. background-attachment: scroll !important;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement