border-bottom无法正常工作

时间:2015-09-19 10:00:32

标签: css twitter-bootstrap css-float grid-system

我有一个奇怪的问题,我有3个标签菜单项,有文字,在我设置边框底部的文字后,它对第一个菜单标签工作正常,但对于其他2个它' s出现在另一个边框底部,但是当我在Jsfiddle中放置代码时,它的工作正常..这是我的代码Jsfiddle

HTML

<div class="container">
        <div class="row">
            <div class="col-md-12">
                <header>
                    <a href="#"><h1 class="title">Title</a><a href="#" id="show-about-btn">&#9650;</a></h1>
                </header>
                <div class="menu-nav">  
                    <nav class="subnav">
                        <ul class="tabs">

CSS

body {
    background-color: #E5E5E5;

}

a:link{
    text-decoration:none !important;
}

.title{
    margin-top: 150px;
    font-size: 450%;
    font-weight: bold;
    letter-spacing: 3px;
    margin-left: 10px;
    border-bottom: 1px solid #ccc;
}

.title a,
.title a:visited,
.title a:link {
    color: black;
}


.title a:hover,
.title a:link {
    text-decoration: none;
    color: #2bb673;
}

#show-about-btn {
    font-size: 40%;
    margin-left: 10px;
    color: #2bb673;
}


/*Navigation*/

.subnav {
    height: 80px;
    line-height: 3em;
    border-bottom: 1px solid #ccc;
}

.subnav li {
    list-style: none;
    float: left;
    padding: 1px 40px 1px 1px;
}

.subnav ul li a.active {
    padding: 6px;
    background-color: #2bb673;
    color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    text-decoration: none;
}

.subnav li a {
    color: #2bb673;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    right: 30px;
}

.subnav a:hover {
    text-decoration: none;
    color: black;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

article {
    font-size: 16px;
    font-family: arial, sans-serif;
    display: block;
    border-bottom: 1px solid #ccc;
}

.tab {
    position: relative;
    top: 12px;
    font-size: 12px;
}

.menu-nav {
    display: none;
}

.tab p,h5{
    padding-bottom: 25px;
}

.tab h4 {
    margin-top: 5px;
    font-weight: bold;
}

.tab h5 {
    font-size:18px;
}

.tab img {
    margin-left: 50px;
    margin-bottom: 10px;
}

/*Content*/

.our-work a {
    font-family: "Literaturnaya Italic";
    font-style: italic;
    font-weight: 400;
    font-size: 46px;
    margin-top: 5px;
    color: black;
}

首先屏幕边框位于正确位置

enter image description here

在第二个标签页上,同一个边框显示在另一个标签上 enter image description here

2 个答案:

答案 0 :(得分:1)

只需将类行添加到#about_us或更好地将代码包装在#about_us内的<div class="row">..content under #about_us..</div>下。像.col-md-3这样的引导网格系统类应始终包含在.row内以避免CSS float problem

机制

.col-开头的网格类使用float:left一个接一个地对齐并保持精确的尺寸。所以它的父母将失去所有的身高(a classic CSS float problem)。现在添加类row可以通过添加clearfix来干净地解决这个问题,因为它添加了一个带有clear:both的伪元素。

.row:after {
content: " ";
clear:both;
display:block;
}

答案 1 :(得分:0)

你问题是你有多种风格,@ pankajPhartiyal说。

从样式部分的border-bottom: 1px solid #ccc; {/ 1}}中删除此行

Demo