CSS 边距问题仅在 Chrome 和 Chrome 中出现狩猎之旅
我正在完成我的第一个网站:http://www.audio-agent.com/。
我刚刚注意到,虽然在 Firefox 中看起来是正确的,但在 Safari / Chrome 中查看时,导航菜单填充和垂直对齐是关闭的。
以下是我用于菜单的所有 CSS:
ul#navigation {
background:url(images/navBgSlice.png);
color:#fff;
padding:6px 40px 6px 40px;
font-size:14px;
text-transform:uppercase;
text-align:right;
}
ul#navigation a.current {
color:#fcff00;
}
ul#navigation a:link, ul#navigation a:visited,
p.flip a:link, p.flip a:visited {
font-weight:normal;
}
ul#navigation a:active, ul#navigation a:hover,
p.flip a:active, p.flip a:hover {
text-decoration:none;
}
ul#navigation li {
display:inline-block;
padding:0 10px;
}
ul#navigation li:last-child {
padding-right:0;
}
HTML 只是:
<ul id="navigation">
<a class="current" href="<?php blogInfo('url'); ?>"><li>Services</li></a> |
<a href="<?php blogInfo('url'); ?>/clients"><li>Clients</li></a> |
<a href="<?php blogInfo('url'); ?>/news"><li>News</li></a>
</ul>
知道会发生什么吗?非常感谢任何帮助!
I'm finishing up my first site: http://www.audio-agent.com/.
I just noticed that, while it looks correct in Firefox, the navigation menu padding and vertical alignment is off when viewed in Safari / Chrome.
Here's all the CSS I'm using for the menu:
ul#navigation {
background:url(images/navBgSlice.png);
color:#fff;
padding:6px 40px 6px 40px;
font-size:14px;
text-transform:uppercase;
text-align:right;
}
ul#navigation a.current {
color:#fcff00;
}
ul#navigation a:link, ul#navigation a:visited,
p.flip a:link, p.flip a:visited {
font-weight:normal;
}
ul#navigation a:active, ul#navigation a:hover,
p.flip a:active, p.flip a:hover {
text-decoration:none;
}
ul#navigation li {
display:inline-block;
padding:0 10px;
}
ul#navigation li:last-child {
padding-right:0;
}
And the HTML is just:
<ul id="navigation">
<a class="current" href="<?php blogInfo('url'); ?>"><li>Services</li></a> |
<a href="<?php blogInfo('url'); ?>/clients"><li>Clients</li></a> |
<a href="<?php blogInfo('url'); ?>/news"><li>News</li></a>
</ul>
Any idea what could be going on? Any help is much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改:
至:
并将 class="last-child" 添加到您的列表中:
如果您想要完整的跨浏览器支持,这是最简单的方法完成这个 - 正如早期的 IE 和 Safari 与伪类
:last-child
的斗争一样,希望这会有所帮助。
这是一个示例: http://jsfiddle.net/DAyjz/
Change:
To:
And add class="last-child" to your list:
<a href="<?php blogInfo('url'); ?>/news"><li class="last-child">News</li></a>
If you want full cross-browser support, this is the simplest way to accomplish this - As earlier IE and Safari struggle with the pseudoclass
:last-child
Hope this helps.
Here's an example: http://jsfiddle.net/DAyjz/