Firefox 正在为 WordPress 中的翻转链接添加填充
我有一个硬编码到 WordPress 中的翻转菜单(否则无法让 IE 识别链接)。它工作正常,但所有链接上都有这种神秘的填充。我尝试过各种各样的东西 - css重置、各种定位设置、添加和删除填充、将ems更改为px、删除行高...这是网站:http://circore.com/sporttours/
我认为这是相关的 css,但它可能来自 style.css 文件中的其他位置。任何帮助表示赞赏!谢谢
#menu-top {
background:url(images/menu-top.png);
height: 115px;
width:210px;
margin-bottom:0px;
}
#logo {
display:none;
}
#menu-content {
width:210px;
padding:0px;
height:238px;
}
#menu-content .img {
padding:0px;
margin:0px;
}
#menu-bottom {
background:url(images/menu-bottom.png) no-repeat;
height: 302px;
}
I've got a rollover menu hard-coded into WordPress (couldn't get IE to recognize the links otherwise). It works fine but there is this mysterious padding on all the links. I've tried all sorts of stuff - css reset, various positioning settings, adding and removing padding, changing ems to px, removing line height... Here's the site: http://circore.com/sporttours/
I assume this is the pertinent css, but it could be coming from elsewhere in the style.css file. Any help is appreciated! thanks
#menu-top {
background:url(images/menu-top.png);
height: 115px;
width:210px;
margin-bottom:0px;
}
#logo {
display:none;
}
#menu-content {
width:210px;
padding:0px;
height:238px;
}
#menu-content .img {
padding:0px;
margin:0px;
}
#menu-bottom {
background:url(images/menu-bottom.png) no-repeat;
height: 302px;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将以下
内容更改为:
.img
更改为img
来修复它。差异很重要。.img
正在寻找(或 任何 具有
class="img" 的元素)。您正在找到所有
img
元素,因此img
就是您想要的。margin: 0; padding: 0
- 我认为这只是您尝试摆脱多余空间的一部分。You can fix it by changing this:
to this:
.img
to justimg
. The difference is important..img
is looking for<img class="img" />
(or any element withclass="img"
). You're after finding allimg
elements, soimg
is what you want.margin: 0; padding: 0
- I assume that was merely part of your attempt to get rid of the extra space.