Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.31 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <head>
  2.     <link rel="stylesheet" href="base.css" />
  3.     <link rel="stylesheet" href="mobile.css" media="max-width: 320px" />
  4.  
  5.     <!-- OR -->
  6.  
  7.     <style type="text/css">
  8.         /* base styles go here */
  9.  
  10.         @media (max-width: 320px)
  11.         {
  12.             /* mobile styles go here */
  13.         }
  14.     </style>
  15. </head>