0

我有一个 css 导航栏,我想从网页的两侧延伸出来。现在它的宽度非常小,似乎无论我玩多少比例都没有改变。有人可以帮我吗?我对网页设计比较陌生。我将发布我的 CSS 和 HTML

CSS:

/* Links */

.menu li a {
    display: block;
    padding: 0 14px;
    margin: 6px 0;
    line-height: 28px;
    text-decoration: none;

    border-left: 1px solid #4075a6;
    border-right: 1px solid #4075a6;

    font-family: Archer,Helvetica, Arial, sans-serif;
    font-weight: light;
    font-size: 13px;

    color: white;
    text-shadow: 0px 0px 0px rgba(0,0,0,.6);

    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }

.menu li:hover > a { color: #b8ccdc; }

/* Sub Menu */

.menu ul {
    position: absolute;
    top: 40px;
    left: 0;
    opacity: 0;
    background: #195892;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;

    -webkit-transition: opacity .25s ease .1s;
    -moz-transition: opacity .25s ease .1s;
    -o-transition: opacity .25s ease .1s;
    -ms-transition: opacity .25s ease .1s;
    transition: opacity .25s ease .1s;
    width: 101px;
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
    height: 0;
    overflow: hidden;
    padding: 0;

    -webkit-transition: height .25s ease .1s;
    -moz-transition: height .25s ease .1s;
    -o-transition: height .25s ease .1s;
    -ms-transition: height .25s ease .1s;
    transition: height .25s ease .1s;
}

.menu li:hover > ul li {
    height: 36px;
    overflow: visible;
    padding: 0;
}

.menu ul li a {
    width: 100px;
    padding: 0px 0px 0px 0px;
    margin: 0;

    border: none;
    border-bottom: 1px solid #353539;
}

.menu ul li:last-child a {
    border: none;
    color: #195892;
}

HTML:

<ul class="menu">
    <li><a href="#">Home</a></li>
    <li><a href="#">Developements</a></li>
    <li><a href="#">Condominiums</a>
    <ul>
        <li><a href="#" class="documents">Documents</a></li>
        <li><a href="#" class="messages">Messages</a></li>
        <li><a href="#" class="signout">Sign Out</a></li>
    </ul>
    </li>
    <li><a href="#">Video Tours</a></li>
    <li><a href="#">Contact </a></li>
</ul>
<!-- end .menu -->
4

2 回答 2

0

我需要将我的 .menu 更改为 100% 宽度并添加 position: absolute; 右:0;左:0;这非常有效。

于 2012-08-01T17:33:58.053 回答
0

您需要将 UL 上的宽度设置为所需的宽度。我认为 100% 对你有用,因为它会从包裹它的容器的边缘到边缘。

我建议在 UL 和 LI 上放置背景颜色,以便您可以轻松查看它们的开始和结束位置,然后在将它们放置在您想要的位置后将其移除。

于 2012-08-01T17:16:51.167 回答