如何在页脚底部将黑色放在页面底部

时间:2013-10-25 22:44:15

标签: asp.net css

我想在(下方)页脚之后的aspx页面底部放置半英寸的黑色。

我试过

CSS

#footerCol
{
    color: #999;
    padding: 10px 0;
    text-align: center;
    line-height: normal;
    margin: 0;
    font-size: .9em;
}

html:

<div id="footerCol"> </div>

2 个答案:

答案 0 :(得分:1)

您需要使用border-top

#footerCol{
    color: #999;
    padding: 10px 0;
    text-align: center;
    line-height: normal;
    border-top: 5px solid #000;
    margin: 0;
    font-size: .9em;
}

请参阅http://jsfiddle.net/V6UEL/

答案 1 :(得分:1)

当你说“之后”时,我认为你的意思是“之后”: -

<head>
    <meta charset="utf-8" />
    <title>answer</title>
    <style>
        body{
            margin:0;
        }
        #footerCol {
            color: #999;
            padding: 10px 0;
            text-align: center;
            line-height: normal;
            margin: 0;
            font-size: .9em;
        }
            #footerCol::after {
                content: "";
                display: block;
                background-color: black;
                height: 20px;
            }
    </style>
</head>
<body>
    <div>
        <asp:ContentPlaceHolder ID="MainContentPlaceHolder" runat="server" />
    </div>
    <div id="footerCol">
        footer text
    </div>
</body>
</html>