【发布时间】:2018-07-31 01:38:39
【问题描述】:
单击其中一个按钮并返回主页后,我单击的按钮带有蓝色方形边框。如何删除此边框,以便在单击圆形按钮后没有方形边框?
button {
width: 100px;
height: 100px;
background: #3F6;
border-color: #000;
border-radius: 4em;
}
button:hover {
background: #F00;
}
<a href="#" target="_blank"><button>Test</button></a>
<a href="#" target="_blank"><button>Test</button></a>
<a href="#" target="_blank"><button>Test</button></a>
<a href="#" target="_blank"><button>Test</button></a>
【问题讨论】: