使用vertical-align可以实现对齐
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
input,button{
height: 30px;
width: 50px;
vertical-align: top;
}
</style>
</head>
<body>
<input type="" name="" id="" value="" /><button></button>
</body>
</html>