2014-03-31 12 views

回答

0

你可以簡單地定義如果要專門定義爲大於1366px的規則你的CSS然後用下面的一切以下1366px

@media (max-width : 1366 px) { 
/* CSS rules here */ 
} 

,你可以使用:

@media (min-width : 1366 px) { 
/* CSS rules here */ 
} 
+0

則對整體低於1366的工作? –

1

對於1366px:

HTML:

<link href="styles.css" rel="stylesheet" media="all and (max-width: 1366px)"> 

CSS:

@media screen and (max-width: 1366px) { 

//codes 

} 

對於其他尺寸:

HTML:

<link href="styles2.css" rel="stylesheet" media="all and (min-width: 1366px)"> 

CSS:

@media screen and (min-width: 1366px) { 

//codes 

} 
相關問題