如何使 和 标签的尺寸与相同Suckerfish 下拉菜单?
- 相同Suckerfish 下拉菜单?
我正在使用具有以下结构的 Suckerfish 下拉菜单,当我使用 Chrome 的开发人员工具检查 HTML 时,我发现 和 相应的标签具有自己的标签尺寸。这是有问题的,因为这实际上导致 比页面上的其他按钮稍大。这是我的意思的屏幕截图: http://dl.dropbox.com/ u/9191/Screenshots/lsuf.png
如您所见,按钮 3 比其他按钮大。理想情况下,我想让 Button 3 与其他按钮的尺寸相同。
这是标记:
<ul id="suckerfish">
<li id="main"><a href="#">Button 3</a>
<ul id="dropdown">
<li><a href="#">Dropdown Menu Item 1</a></li>
<li><a href="#">Dropdown Menu Item 2</a></li>
</ul>
</li>
</ul>
I am using a Suckerfish dropdown menu with the following structure and when I inspect the HTML using Chrome's developer tools I find that the and respective tag have their own dimensions from the tag. This is problematic because this is in effect causing the to be slightly larger than my other buttons on my page. Here is a screenshot of what I mean: http://dl.dropbox.com/u/9191/Screenshots/lsuf.png
As you can see Button 3 is larger than the other buttons. Ideally I would like to make Button 3 the same size as the others.
Here is the markup:
<ul id="suckerfish">
<li id="main"><a href="#">Button 3</a>
<ul id="dropdown">
<li><a href="#">Dropdown Menu Item 1</a></li>
<li><a href="#">Dropdown Menu Item 2</a></li>
</ul>
</li>
</ul>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查第三个按钮是否具有带有额外填充的“活动”类。
Check whether you have a 'active' class for the third button with extra padding.
@brian 首先使用重置 css 文件
我使用这个 http://meyerweb.com/eric /tools/css/reset/
如果您仍然遇到问题(我对此表示怀疑),请告诉我
@brian start with using a reset css file
I use this one http://meyerweb.com/eric/tools/css/reset/
if you are still having problems (which I doubt) just let me know