CSS边框底部悬停在导航菜单上

时间:2015-06-29 10:06:21

标签: css html5 css3

我的border-bottom属性有问题。我希望我的边框底部从我的li元素的底部到顶部,高度为80px。当我尝试使用border-top时,它会移动我的"标题导航文件"元素80px到底部。有人有想法吗?

<section class="intro">
    <header>
        <div class="wrapper">
            <nav>
                <ul>
                    <li class="nav_home"><a href="#" onclick="return false;">Home</a></li>
                    <li class="nav_folio"><a href="#" onclick="return false;">Portfolio</a></li>
                    <li class="nav_about"><a href="#" onclick="return false;">About</a></li>
                    <li class="nav_contact"><a href="#" onclick="return false;">Contact</a></li>
                </ul><!-- end nav-menu ul !-->
            </nav>
        </div>
    </header>
</section>

.wrapper {
    width: 1180px;
    margin: 0 auto;
    position: relative;
}

.intro {
    width: 100%;
    height: 100%;
    background: url(../images/banner.jpg) no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

header {
    top: 0;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    color: #aaa;
    text-align: center;
    background: transparent;
    border-bottom: 3px solid rgba(72, 191, 114, 1);
    z-index: 99;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
    float: left;
}

header nav ul li {
    position: absolute;
    float: left;
    margin-left: 5px;
    width: 120px;
    border-bottom: 0px solid transparent; 
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    height: 80px;
    line-height: 80px;
} 

header nav ul li a {
    font-size: 1.2em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #fff;
    outline: none;
}

header nav ul li:hover {
    border-bottom: 80px solid #48bf72; 
    cursor: pointer;
}

2 个答案:

答案 0 :(得分:1)

使用

box-sizing: border-box;

作为侦听的CSS属性(普通li和li:悬停)或将其设置为所有html元素的全局属性。

希望这会有所帮助

答案 1 :(得分:0)

一个虽然体积庞大的解决方案是创建一个与顶部,左侧和右侧背景颜色相同的边框。然后,当您使用:悬停选择器时,更改背景色边框以包括底部,同时将顶部边框更改为先前用于底部的颜色。