0

我刚开始学习 HTML/CSS,正在尝试从头开始制作个人网站(没有 CSS 工具)

当我昨晚在 Firefox 和 IE 中测试我的网站时,它看起来很干净 http://i.imgur.com/vQd57rk.png

当我在 Chrome 中测试我的网站时,我的链接被移动了: http://i.imgur.com/DjaziKg.png

有人知道这里发生了什么吗?这是我的标记:

<!DOCTYPE html>
<html>
    <head>
        <title>Home | Some Website!</title>
        <style>
            * {
                padding: 0;
                margin: 0;
            }

            body {
                width: 960px;
                font-size: small;
                font-family: Verdana, Helvetica, Arial, sans-serif;
                line-height: 1.6em;
                background-color: #FFFFF0;
                margin: 0 auto;
            }

            #header {
                border-style: solid;
            }
            #header img {
                margin: 4px 0px 0px 4px;
            }

            #header ul {
                list-style-type: none;
                display: inline;
                margin: 25px 30px 0px 0px;
                float: right;
                font-size: x-large;
            }

            #header ul li {
                display: inline;
                margin: 0 30px;
            }

            #header li a:link {
                color: #FF00FF;
                text-decoration: none;
            }

            #header li a:hover {
                text-decoration: underline;
            }
        </style>
    </head>
    <body>
        <div id="header">
            <img src="http://i.imgur.com/YbAx7y1.png" alt="Temp Logo!">
            <ul>
                <li><a href="about.html">About Me</a></li>
                <li><a href="resume.html">R&eacute;sum&eacute;</a></li>
                <li><a href="projects.html">Projects</a></li>
                <li><a href="contact.html">Contact</a></li>
            </ul>
        </div>
    </body>
</html>
4

2 回答 2

0

Change #header ul css definition fromdisplay: inline; to display: inline-block;.

于 2013-08-19T18:20:02.637 回答
0

每个浏览器对事物的解释都不同。你应该比body { font-size: small }. 我建议使用 px 值,除非您真的打算将其留给浏览器。

于 2013-08-19T18:24:00.230 回答