HTML / CSS Div容器显示侧边框

时间:2014-07-10 19:09:22

标签: html css

谁能告诉我这些边线的来源? side lines

它只显示在那个DIV上,这是它的CSS:

#layout
{
    color: White;
    margin: 2em auto;
    width: 80%;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

#header
{
    position: fixed;
    width: 100%;
    height: 150px;
    background-color: #151515;
}

#footer
{
    position: fixed;
    bottom: 0;
    /*left: 40%;*/
    height: 30px;
    width: 100%;
    background-color: #151515;
    text-align: center;
}

#primary
{
    margin: 0 -26.4% 0 0;
    width: 75%;
}

#content
{
    position: relative;
    padding-top: 10%;
    left: 30%;
    width: 50%;
    word-wrap: break-word;
}

#nav
{
    position: fixed;
    top: 10%;
    left: 10%;
    height: 100%;
    padding-left: 35px;
    padding-top: 50px;
}

#side
{
    position: fixed;
    top: 17%;
    left: 70%;
    width: 18.8%;
    text-align: left;
}

.sideFont
{
    font-size: 12px;
    word-wrap: break-word;
}

我在布局div中有内容div,具有固定的标题,导航和侧边栏位置 它在一些css更新后开始出现,但我试图回溯我的工作,无法找到它的起源,并且边界的长度与页面上显示的内容一样......

我确定这是一个简单的答案,感谢任何能打耳光的人,并且因为我大脑放屁而打电话。

更新: HTML:

<html>
<body>
    <div id="header" align="center"></div>
    <div id="layout">
    <div id="primary">
        <div id="nav">
        <BR />
            <ul>
            <li><a href=''>Home</a></li>
            </ul>
        </div>
    <div id="content">
        content
    <div id="side" class="sideFont">
    </div> 
    </div>
    </div>
    <div id="footer"></div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

我说这是一个大脑放屁我很抱歉。

它来自我看到的布局css,因为我将其粘贴到窗口

border-left: 1px solid #ccc;
border-right: 1px solid #ccc;