边栏列表被推向右侧

时间:2013-08-28 18:58:44

标签: html css

我的页面有一个深灰色的侧边栏,里面有一个带有导航功能的ul。目前,UL正在侧栏内被推翻。

小提琴:http://jsfiddle.net/PWZJd/

我希望将UL压在侧边栏的左侧。然后我可以添加一些填充来移动它,因为我觉得合适。

HTML:

<div class="content">
    <header id="myNav" class="top_block navbar-fixed-top" >
    <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">4Tell</a></li>
        <li><a href="#">Console 1</a></li>
        <li><a href="#">Console 2</a></li>
        <li><a href="#">About</a></li>  
    </ul>
    </header>
    <aside class="background sidebar">
    <div class="sidenav">
    <ul class="menu side-menu">
        <li><a href="#">NCR at your service</a></li>
            <ul class="sub-menu">
                <li>My Support Link</li>
                <li>My Asset List</li>
                <li>My Invoices</li>
                <li>My Somthing Else</li>
            </ul>
        <li><a href="#">Q2C MAC</a></li>
            <ul class="sub-menu">
                <li>Move</li>
                <li>Add</li>
                <li>Change</li>
                <li>Swap</li>
            </ul>
        <li></li>
        <li></li>
        <li></li>
    </ul>

    </div>
    </aside>
    <div class="left_block sidebar">
    </div>
    <div class="bottom_block footer">
        <p class="text-center">Designed by Steve Wilson <br>With contributions from Alex Cronon and Robert Moua</p>
    </div>
</div>

CSS:

    html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%; 
}

.content {
    min-height: 100%;
    position: relative;
    overflow: auto;
    z-index: 0; 
}

.background {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
}

.top_block {
    width: 100%;
    display: block; 
}

.bottom_block {
    position: absolute;
    width: 100%;
    display: block;
    bottom: 0; 
}

.left_block {
    display: block;
    float: left; 
}

.right_block {
    display: block;
    float: right; 
}

.center_block {
    display: block;
    width: auto; 
}

.background.sidebar {
    height: auto !important;
    padding-bottom: 0;
    left: 0;
    width: 200px;
    background-color: #33404c;
    margin-top: 50px;
    margin-bottom: 50px; 
    border-right: 1px solid;

}

.sidebar {
    height: auto;
    width: 20%;
    padding-bottom: 75px;


}

.footer {
    width: 100%;
    height: 50px;
    background-color: #e3e6ea;
    padding-top: 5px;
}

.sidenav {
    margin-top: 10px;
    color: #f9fafb;


}

.side-menu {
    font-size: 1.2em;
    font-family: 'Open Sans', sans-serif;
    list-style: none;
    line-height: 2em;

}

*注意:我已经删除了Stack Overflow的一些代码,请查看更完整版本的小提琴。

2 个答案:

答案 0 :(得分:0)

将旁边菜单上的paddingmargin调整为0。

请参阅:http://jsfiddle.net/PWZJd/2/

答案 1 :(得分:0)

ul元素上的默认填充是向右移动的内容。只需更新填充,您就可以将ul靠近侧栏的左侧靠近,尽可能靠近。

演示:http://jsfiddle.net/PWZJd/3/