0

我的博客上,我试图减少蓝色框内的填充并放大我的图像并删除我的移动视图的悬停。到目前为止,我的代码不会改变它。我只是想让它对触摸设备更敏感

@media only screen and (max-width:800px) {
    #header, #pageWrapper, #footer {
        padding: 30px 20px;
        margin-bottom: 0px !important;
    }  
    h1.logo {
        text-align: center;
        padding-bottom: 10px
    }
    .slide img {
        opacity: 1
    }
    .sqs-active-slide img {
        opacity:1
    }
    .collection-type-gallery #slideshowWrapper .slide img {
        background-color: white !important;
        margin: 2px 0;
    }
    img {
        max-width: 200px;
    }
    .hentry {
        background: #F8F9FC;
        padding: 10px;
        border-style: solid;
        border-color: #E2E7F5;
        border-width: 2px
    }
    .collection-51ca14b1e4b014f2c6e0c3e7 .slide img {
        opacity:1.0;
    }
}
4

2 回答 2

1

对于图像,您需要使用!important声明来覆盖 HTML 中的正常特异性样式。例如,如果您想将新宽度设置为 400 像素:

.sqs-gallery-block-grid .slide .margin-wrapper a.image-slide-anchor img {
    width: 400px !important;
    height: auto !important;
}
于 2013-08-20T20:56:50.130 回答
0

我可以马上告诉你,你的最大宽度可能太高了。如果您的目标是智能手机,它应该最多为 640 像素。

于 2013-08-20T19:27:45.720 回答