level 11
这是我的代码,为什么右边的span会高一点点?
<style type="text/css">
*{margin: 0;padding: 0;}
.search input {
margin-top: 35px;
margin-left: 125px;
border: 2px solid rgb(42, 115, 253);
border-right: none;
width: 450px;
height: 30px;
}
.search span {
width: 65px;
height: 30px;
background-color: rgb(42, 115, 253);
display: inline-block;
text-align: center;
color: white;
font-size: 20px;
border: 2px solid rgb(42, 115, 253);
-webkit-user-select: none;
line-height: 30px;
}
</style>
<div class="search">
<input id="search_input" type="text" /><span>Go</span>
</div>
2017年07月07日 03点07分
