CSS - 定位导航标题

时间:2014-05-20 14:20:58

标签: html css navigation positioning

我想知道如何定位导航标题以便我的下拉菜单可以正常工作.. 下面的图片是我完美定位的一个链接,由于填充左边分开,设置为80像素;奇怪的是,我的下拉类别也被填充,留下了额外的空间,这使得它看起来非常难看。我的下拉菜单链接分为两行,但它只是一个链接。我该如何解决这个问题?我也试过保证金,没有真正改变。我想这是第三张照片......

图片一 - 我想要的导航定位:

http://i61.tinypic.com/2cshw7q.png

图二 - 我的下拉问题:

http://i60.tinypic.com/2z4037c.png

图三 - 我希望的方式:

http://i60.tinypic.com/1252ejo.png

我该如何做到这一点?

EDIT!

我的CSS代码:

#menu 
{
clear:both;
position: relative;
width: 100%;
height:30px;
background: rgb(38,42,53); /* Old browsers */
background: -moz-linear-gradient(top, rgba(38,42,53,1) 0%, rgba(40,45,63,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(38,42,53,1)), color-stop(100%,rgba(40,45,63,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(38,42,53,1) 0%,rgba(40,45,63,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(38,42,53,1) 0%,rgba(40,45,63,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(38,42,53,1) 0%,rgba(40,45,63,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(38,42,53,1) 0%,rgba(40,45,63,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#262a35', endColorstr='#282d3f',GradientType=0 ); /* IE6-9 */
}

ul#menu {
    margin:0;
    padding:0;
    list-style-type: none;
    text-transform: uppercase;
    font-size: 15px;
}


    ul#menu li{
    position: relative; 
    display:inline-block;
    /*float:left;*/
    margin:0;
    padding:0;
    }


ul#menu li a{
display:block;
float:left;
color:#84FD00;                /* #874B46 */
text-decoration:none;
padding-left: 80px;
padding-top: 5px;
}

ul#menu li ul {
    margin-top:20px;
    position: absolute;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow:none;
    opacity: 0;
    visibility: 0;
    padding-left: 30px;
}

ul#menu li ul li {
    background: rgb(38,42,53); /* Old browsers */
background: -moz-linear-gradient(top, rgba(38,42,53,1) 0%, rgba(40,45,63,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(38,42,53,1)), color-stop(100%,rgba(40,45,63,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(38,42,53,1) 0%,rgba(40,45,63,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(38,42,53,1) 0%,rgba(40,45,63,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(38,42,53,1) 0%,rgba(40,45,63,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(38,42,53,1) 0%,rgba(40,45,63,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#262a35', endColorstr='#282d3f',GradientType=0 ); /* IE6-9 */
    color: #8BA8C5;
    height: 40px;
    }

ul#menu li  ul li:hover { 

    background: #666; 

    }

ul#menu li:hover ul {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-right:20px;
    }

1 个答案:

答案 0 :(得分:0)

将下拉列表ul设置为text-align: left; - 这应显示左侧的文本。出于某种原因,你的文字是正确对齐的......