水平定位无序列表

时间:2011-12-02 15:52:32

标签: html5 layout css3 html-lists

我有一个无序列表,它可以作为基本导航栏。

我的目标是在屏幕宽度为60%的位置显示它并居中。我遇到的问题是它显示了一点偏离中心,大小也各不相同。 我使用外部样式表。任何帮助都感激不尽。

以下是页面:

<!DOCTYPE HTML>
<html>
    <head>
        <title>Help</title>
        <link rel="stylesheet" type="text/css" href="Styles/mainStyle.css"/>
        <meta charset="UTF-8">
    </head>
    <body>
        <h2>Home</h2>
        <ul>
            <li><a href="link.htm">Home</a></li>
            <li><a href="link2.htm">Link2</a></li>
            <li><a href="link3.htm">Link3</a></li>
        </ul>
        <div id="container">
            <p>
                Some Text. Some Text. Some Text. Some Text. Some Text.
            </p>
            <p>
                More Text. More Text. More Text. More Text. More Text.
            </p>
        </div><!-- End of container -->
    </body>
</html>

这是外部样式表:

h2
{
    /* Positioning */
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* Colours */
    background-color: #99CCCC;
    /* Border */
    border: 1px solid #000000;
    border-radius: 25px;
}
ul
{
    /* Positioning */
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
li
{
    /* Positioning */
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
    vertical-align: top;
    /* Colours */
    background-color: #99DDBB;
    /* Border */
    border: 1px solid #000000;
    border-radius: 25px;
}
a
{
    /* Colours */
    color: #000000;
}
a:hover
{
    font-style: italic;
}
#container
{
    /* Positioning */
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
p
{
    /* Positioning */
    padding: 10px;
    text-align: left;
    /* Colours */
    background-color: #99CCCC;
    /* Border */
    border: 1px solid #000000;
    border-radius: 25px;
}
img
{
    /* Positioning */
    width: 50%;
    border: 1px solid #000000;
    border-radius: 25px;
}

1 个答案:

答案 0 :(得分:2)

重置ul标签的填充。把它放在你的css的开头:ul {padding:0; }

如果您想完全重置您的CSS,请转到:Reset CSS