无序列表边距在我的页脚内部不起作用

时间:2014-05-21 13:25:04

标签: html css

我希望无序列表与页脚div相关,但由于某种原因我无法使其工作。我担心的是,我的粘脚裤可能与它有任何关系,但我真的不知道。帮助赞赏。

编辑:看来我margin-top内的任何元素都不能#footer

HTML:

<div id="footer">
<ul>
    <li>Item1</li>
    <li>Item2</li>
    <li>Item3</li>
    <li>Item4</li>
        <li>Item5</li>
        <li>Item6</li>
        <li>Item7</li>
        <li>Item8</li>
            <li>Item9</li>
            <li>Item10</li>
            <li>Item11</li>
            <li>Item12</li>
</ul>
</div>

CSS:

#footer {
    height: 200px;
    background: linear-gradient(#545454, #3B3B3B); /* IE9- needs fix */ 
    position: relative;
    margin-top: -200px;
    clear: both;
    bottom: 0;
}

    #footer ul {
        width: 450px;
        margin: 50px auto; /* This is the part that doesn't work.. */
        font-size: 13px;
        color: white;
        -webkit-column-count: 3; /* Chrome, Safari, Opera */
        -moz-column-count: 3; /* Firefox */
        column-count: 3; /* Standard */
        -webkit-column-gap: 0; /* Chrome, Safari, Opera */
        -moz-column-gap: 0; /* Firefox */
        column-gap: 0; /* Standard */
    }

        #footer li {
            width: 150px;
            display: inline-block;
            margin: 5px;
        }

1 个答案:

答案 0 :(得分:0)

这是一个保证金崩溃问题。

看一下这个演示http://jsfiddle.net/WfGej/ 并使用

修复#footer
   border-top:1px solid transparent;

像这样:http://jsfiddle.net/WfGej/1/