这里真的很简单。虽然我选择边框,为什么边框外的边框?
<div class="tabswitch">
<a href="#" class="active">Text 1</a>
<a href="#" class="">Text 2</a>
</div>
.tabswitch a {
border: 5px solid #333;
padding: 10px 46px;
display: inline-block;
box-sizing: border-box;
}
.tabswitch a.active {
background-color: #00f;
color: #fff;
border: none;
}
答案 0 :(得分:2)