I want to align textbox and button in one line. I am using bootstrap css. Below is the code i am using.
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%;
}
Layout it makes :
I want the button just after the text box.