编程语言
首页 > 编程语言> > php – 将响应式菜单拆分为两个颜色

php – 将响应式菜单拆分为两个颜色

作者:互联网

这是我在http://www.jokerleb.com/工作的网站,我正在使用这个免费版本https://responsive.menu.它将出现在400px及更小的设备上.

如何将其列拆分为2如此?

enter image description here

如果首先可能的话,不知道如何编辑CSS以使其看起来正确.

解决方法:

将这些行添加到您的代码中:

@media screen and (max-width: 400px){
    #responsive-menu-container{
        width:100%;
    }

    #responsive-menu {
        display: flex;
        flex-wrap: wrap;
    }

    #responsive-menu li{
        width:50%;
    }
}

这个对我有用.

标签:php,css,wordpress,menu,responsive
来源: https://codeday.me/bug/20190823/1700149.html