I am trying to achieve a layout where the text box and button are aligned in one line using Bootstrap CSS. Here is the code snippet I have been working with:
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%;
}
Current layout display :
I am aiming to have the button positioned right after the text box.