0
我有當前標籤當前它添加了邊框頂部,邊框左邊界和右邊界。邊框沒有排列正確的標籤
顯示的邊框左邊界和右邊界似乎超過.tabs邊框底部。
問題我怎麼能確保標籤是具有類.current的 左邊框和右邊框甚至會與.tabs邊境 底部。
CSS
.tabs {
border-bottom: 1px solid #e4e6e8;
margin-top: 3rem;
padding-bottom: 10px;
}
.tabs a {
padding: 15px;
}
.tabs a.current {
background: #fff;
color: #222;
border-top: 3px solid #ef4123;
border-left: 1px solid #e4e6e8;
border-right: 1px solid #e4e6e8;
}
的Html
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="tabs">
<a href="" class="current">Profile</a>
<a href="" class="">Activity</a>
</div>
</div>
</div>
</div>
謝謝你的工作。 – user4419336
@ wolfgang1983不客氣。 –