1920 * 1200屏幕分辨率无法正常工作我的webapplication

时间:2016-06-23 09:20:25

标签: css twitter-bootstrap resolution screen-resolution

我正在开发 ASP.net 项目。我使用引导程序框架,我的网络应用程序无法修复以下解决方案,显示一些空格20",22",23",24" (1600*900)(1680*1050)(1920*1080) (1920*1200)

look at look at this

我该如何解决?我使用了一些媒体查询但不起作用。请帮我解决。

谢谢,

.wrapper {
    background-image: url(../../Img/world.jpg);
}


@media only screen and (max-width: 560px), (min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    thead, tbody, th, td, tr {
        display: block;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    body { 
        width: 495px; 
    }
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    body { 
        width: 495px; 
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    body { 
        width: 495px; 
    }
}

@media screen and (max-width: 1920px){
    body { 
        width: 100%;
        height:100%; 
    }
}

.modal-footer {   border-top: 0px; }

.form-control {
    display: block;
    width: 345px;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    line-height: 1.33;
    border-radius: 6px;
}

我正在开发 ASP.net 项目。我使用引导程序框架,我的网络应用程序无法修复以下解决方案,显示一些空格20",22",23",24" (1600*900)(1680*1050)(1920*1080) (1920*1200)

look at look at this

我该如何解决?我使用了一些媒体查询但不起作用。请帮我解决。

0 个答案:

没有答案