因为之前一直在写原生,碰到个非常有趣的tab切换,最近也是有时间来整理一下博客,废话不多说,直接上代码
//CSS部分
<style>
button{
width: 100px;
height: 35px;
border: none;
cursor: pointer;
}
button:active,
button:focus{
background: #05943c;
color: #fff;
}
</style>
//html部分
<body>
<button>按钮1</button>
<button>按钮2</button>
<button>按钮3</button>
<button>按钮4</button>
<button>按钮5</button>
<button>按钮6</button>
</body>
运行结果就是点击那个按钮那个按钮就会变成相应的背景色
有需要自取,代码可以跑通