css 响应式设计

vx6bjr1n  于 2023-08-08  发布在  其他
关注(0)|答案(1)|浏览(132)

我正在使用这个WordPress样式表。
下面的代码,当我用鼠标调整屏幕大小时,它会踢进来并显示响应性。但是当我使用Chrome开发工具并点击每个不同的设备尺寸时,它并不会启动。此外,我已经通过我移动的检查了这一点,它没有显示响应设计。
我哪里做错了?

.specials{
    display: flex;
    //padding: 30px;
    text-align: center;

    @media screen and (max-width: 600px){
        flex-direction: column;
    }
    .content{
        width: 50%;
        padding: 30px;
        background-color: rgba($color: $primary, $alpha: 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        p{
            line-height: 30px;
        }

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

    .image{
        width: 50%;
        //padding: 30px;
        background-color: #000;
        img{
            max-width: 100%;
            height: auto;
        }

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

字符串

yi0zb3m4

yi0zb3m41#

如果你的页面在浏览器的响应模式下呈现的东西太小,那么你可能忘记了viewport Meta标签:

<meta name="viewport" content="width=device-width,initial-scale=1.0">

字符串
添加它将使您的网站在移动的设备(包括桌面浏览器中的响应模式所模拟的)的适当大小。

相关问题