Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个工作正常的水平菜单。当分辨率改变并实际上变得更小到 1024*768 时,菜单中断到第二行,这有点混乱。知道如何将其保持在一条线上或在技术上做一些适当的事情吗?PS:我不想使用 JQuery。我使用自己的代码。提前致谢。
使用min-width属性作为菜单 ID。这将限制您的 div 在达到某个限制后不会向下滑动。
min-width
例如:
#menu{ background:#A1DBE6; min-width:xx; /* You can replace your value in pixels instead of xx */}
希望这可以帮助。