我有一个奇怪的问题,我有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">▲</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;
}
首先屏幕边框位于正确位置
答案 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)