水平菜单:如何固定列表项的宽度
我有一个水平
元素的宽度固定为每个 250px?
菜单。如何将
I have a horizontal <ul>
menu. How can I fix the width of the <li>
elements at, say, 250px each?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
设计 A 标签的样式可以帮助保持一致性,并为您提供比设计 LI 标签的样式更多的灵活性,特别是如果您最终制作多行菜单项。
您还应该使用 CSS 重置 来保持浏览器之间的一致性。
Styling the A tag can help maintain consistency and give you a little more flexibility than styling the LI tag, espeically if you end up making multi-line menu items.
You should also use a CSS reset to maintain consistency between browsers.
您可以通过 CSS 来完成此操作:
根据您要使用的水平菜单,您可能还需要
display:block;
样式。You can do this via CSS:
Depending on your you're doing the horizontal menu, you may need a
display:block;
style as well.Nick 和 Diodeus 都说的是对的,但除非您希望所有列表项都具有该宽度,否则最好在该 ul 上添加一个 id,然后在 CSS 中定位它。
What Nick and Diodeus both say is right, but unless you want all of your list items to have that width, you better throw an id on that ul and then target it in your CSS.