假设我有一个标准的引导导航栏,可以在移动设备上折叠。目前,桌面导航栏中的所有内容都显示在手机上。我如何做到"联系我们"只出现在手机上,而不出现在桌面导航栏上?
感谢
您可以使用显示类。以下示例将隐藏介质断点及以上的<li>
元素。
https://getbootstrap.com/docs/4.1/utilities/display/
<ul>
<li class="d-md-none"><a href="/contact">Contact</a></li>
</ul>