媒体查询

拜拜、爱过 提交于 2019-11-30 20:53:55

移动端使用媒体查询兼容ipad等大屏幕设备

@media(min-width:700px){
        .everyReport{
            margin-right: 10px!important;
            &:nth-child(3n){
                margin-right: 0!important;
            }

            img{
                width:160px!important;
            }
            .reportTitle{
                
                width:160px!important;
                
            }
        }
    }
    @media(min-width:980px){
        .everyReport{
            margin-right: 10px!important;
            &:nth-child(3n){
                margin-right: 10px!important;
            }
        }
    }
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!