学习CSS过程中将按钮设置border属性后按钮无法点击
.search button {
float: left;
width: 50px;
height: 42px;
background-color: blue;
/* 按钮默认有个边框需要我们手动去掉 */
border: none;
background: url(images/search.png);
}
<div class="search">
<input type="text" value="输入关键词">
<button></button>
</div>