您需要使用媒体查询,并在特定尺寸以下将标签设置为display none。
@media only screen and (max-width : 768px) { span.ant-menu-title-content { display: none; } }
我个人建议您使用上面这个(它是在桌面和移动设备之间切换最常用的方法)
最后,请考虑使用justify-content: center来在移动设备上将菜单项居中显示 :)
您需要使用媒体查询,并在特定尺寸以下将标签设置为display none。
我个人建议您使用上面这个(它是在桌面和移动设备之间切换最常用的方法)
最后,请考虑使用justify-content: center来在移动设备上将菜单项居中显示 :)