2013-07-10 66 views

回答

3

您可以使用媒體屬性。

<link rel="stylesheet" media="screen and (min-device-width: 1024px)" href="style.css" /> 
0

另一種解決方案:

<style> 


      @media only screen and (min-device-width: 1024px) 
      { 

       Whatever you want for css... 

      } 


      </style> 
相關問題