如果我为大940像素放置.container max-width,那么bootstrap 3中的每个设备的宽度是多少? 中小型和小型设备媒体查询的最大宽度尺寸
因为我想为每个设备编写媒体查询以解决一些问题。
请用此媒体查询代码回答......
答案 0 :(得分:0)
这些是你在核心css中找到的媒体查询。您必须设置自定义宽度才能解决问题 如果您需要保持比例,请尝试使用Photoshop将940px缩放到最小尺寸 就个人而言,即使你可以覆盖最大的容器,我也不会覆盖最小设备的.container。但这取决于你。
您必须添加.container并在每个媒体查询中设置自定义宽度。
/*==================================================
= Bootstrap 3 Media Queries =
==================================================*/
/*========== Mobile First Method ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}
/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}
/*========== Non-Mobile First Method ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}