我想在一行中对齐文本框和按钮。我正在使用引导 css。下面是我正在使用的代码。
HTML:
<div class="new-meows">
<input type="text" class="form-control" >
<button type="button" class="btn">Submit</button>
</div>
CSS:
.new-meows{
padding: 10px;
border: 1px solid grey;
margin : 10px;
width: 97%;
}
它使布局:
我想要文本框后面的按钮。