我需要一些幫助,我的css代碼。我的col的顏色沒有顯示出來。當我刪除某一行它的作品。我的css代碼有什麼問題
@-ms-viewport{
width: device-width;
#result { font-weight: bold; text-align: center; }
#result .error { padding: 4px; background: #ffebe8; border: 1px #eb8a71 solid; }
#result .message { padding: 4px; background: #e8ffec; border: 1px #79ef9d solid; }
#result #grid { width: 50%; margin: 10px 0 0; }
#result #grid .even { background-color: #fff; }
#result #grid .odd { background-color: #F0F0F6; }
#result #grid .highlight { background-color: #3D3D3D; font-weight: bold; }
#result #grid .header { background: url(../images/small.gif) no-repeat #E6EEEE right center; cursor: pointer; padding: 4px; }
#result #grid .headerSortUp { background: url(../images/small_asc.gif) no-repeat #8DBDD8 right center; }
#result #grid .headerSortDown { background: url(../images/small_desc.gif) no-repeat #8DBDD8 right center; }
#result #grid .col1, #grid .col2, #grid .col3 { }
#result #grid .col1 { width: 15%; }
#result #grid .col2 { width: 20%; }
#result #grid .col3 { width: 10%; }
#result #grid .col1 img { display: block; padding: 4px; margin: 4px 0; border: 1px #efefef solid; }
}
當我刪除此行:
@-ms-viewport{
width: device-width;
它的工作原理,但隨後該網站沒有響應。任何人都可以幫助我解決這個問題。我真的需要解決這個問題。
請檢查此鏈接:http://css-tricks.com/snippets/css/media-queries-for-standard-devices/ –