0

这是有问题的页面:http ://www.jacobsievers.com/sample.html

在 Firefox 和 IE 中,我的导航栏显示正确,但如果您使用 Chrome 查看它,“图库”后会有一个换行符。我想知道是否有人可以帮助我弄清楚我需要做什么或更改我的代码。我的 CSS 中有 nav ul 或 nav li 的东西吗?

HTML
(来源:jacobsievers.com

CSS
(来源:jacobsievers.com

我不知道如何制作那些其他人放入代码的滚动框,所以这里有一些 jpgs 抱歉!谢谢您的帮助。

4

1 回答 1

1
nav ul {
text-align: center;
width: 700px;
margin: auto;
word-spacing: 50px;
padding: 0;
font-size: 20px;
}

Should fix it :)

EDIT:

    /************************ =Nav ************************/
 nav ul {
    text-align: center;
    width: 700px;
    margin: auto;
    padding: 0;
    font-size: 20px;
}
nav li {
    display: inline;
    margin: auto;
    position: relative;
    top:30px;
    margin-left: 100px;
}

nav li:first-child { margin-left: 0px; }

nav a {
    text-decoration: none;
    color: rgb(50, 140, 204);
    transition: background-color 2s;
    -moz-transition: background-color 2s;
    /* Firefox 4 */
    -webkit-transition: background-color 2s;
    /* Safari and Chrome */
    -o-transition: background-color 2s;
    /* Opera */
    transition: color 2s;
    -moz-transition: color 2s;
    /* Firefox 4 */
    -webkit-transition: color 2s;
    /* Safari and Chrome */
    -o-transition: color 2s;
    /* Opera */
}
nav a:hover {
    background-color: #E0EEEE;
    color: black;
}

jsFiddle - http://jsfiddle.net/andyjh07/cqZTV/

于 2013-01-23T22:24:58.090 回答