我想創建通用響應模板, 哪些媒體查詢
我必須使用如果我想檢測所有設備的大小?媒體查詢 - 通用響應模板
4
A
回答
8
入住這Common CSS Media Queries Break Points
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@media all and (min-width: 480px) and (max-width: 768px) { }
@media all and (max-width: 480px) { }
/* Portrait */
@media screen and (orientation:portrait) { /* Portrait styles here */ }
/* Landscape */
@media screen and (orientation:landscape) { /* Landscape styles here */ }
/* CSS for iPhone, iPad, and Retina Displays */
/* Non-Retina */
@media screen and (-webkit-max-device-pixel-ratio: 1) {
}
/* Retina */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
}
/* iPhone Portrait */
@media screen and (max-device-width: 480px) and (orientation:portrait) {
}
/* iPhone Landscape */
@media screen and (max-device-width: 480px) and (orientation:landscape) {
}
/* iPad Portrait */
@media screen and (min-device-width: 481px) and (orientation:portrait) {
}
/* iPad Landscape */
@media screen and (min-device-width: 481px) and (orientation:landscape) {
}
0
0
我強烈建議更換使用引導。更快的發展。另外文檔非常完整。 http://getbootstrap.com/getting-started/
至於你的問題,你有這樣的例子:
/*Anything outside of media queries is for MOBILE
This is Mobile first approach.
*/
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { ... }
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) { ... }
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { ... }
相關問題
- 1. 媒體查詢無響應?
- 2. 響應性使用媒體查詢
- 3. 網站響應使用媒體查詢
- 4. 網站沒有響應媒體查詢
- 5. 響應的網頁,以媒體查詢
- 6. 響應式媒體查詢IE
- 7. 響應式圖片和媒體查詢
- 8. CSS媒體查詢 - Android沒有響應
- 9. 響應式佈局 - 媒體查詢
- 10. 媒體查詢響應式設計
- 11. css3媒體查詢響應式設計
- 12. CSS媒體查詢沒有響應jquery
- 13. 如何讓React響應媒體查詢?
- 14. 響應的網站和媒體查詢
- 15. 響應媒體查詢覆蓋
- 16. 媒體查詢響應式設計
- 17. 響應菜單和媒體查詢css
- 18. Css3媒體查詢響應版本
- 19. 響應菜單媒體查詢
- 20. 媒體查詢如何響應
- 21. 媒體查詢沒有響應
- 22. 媒體查詢 - 使圖像響應
- 23. 響應式排版的媒體查詢
- 24. 應用javascript媒體查詢
- 25. 如何爲基本博客模板添加響應式媒體查詢
- 26. CSS /媒體查詢
- 27. 通過媒體查詢
- 28. CSS媒體查詢
- 29. 響應式網頁設計(RWD)通過媒體查詢應用JavaScript
- 30. Safari響應設計模式CSS媒體查詢「設備」未應用
我使用的是上面提到的CSS,但在我的網站上的按鈕不繼的風格。有什麼建議麼? –
請提供更好的主意jsfiddle。 – Sender
昨天我做了一些搜索,發現asp.net按鈕不服從它。任何建議或應該繼續引導3?非常感謝 –