vendredi 31 juillet 2015

How to align both these element in same line?

I have a textarea and a `submit button.

Before adding <form> element it looked like

enter image description here

Now, after surrounding those two elements with <form>, it changed to

enter image description here

<div class="input-group">
     <form>
       <input type="text" class="form-control" placeholder="Enter Message"/>
       <span class="input-group-btn" >   
         <button class="btn btn-info" type="submit">SEND</button>
       </span>
     </form>
</div>

How to get back the previous view with the <form> element included?

I am using angular-bootstrap-ui.

I have a custom.css file where I can override the default bootstrap CSS. I tried with ids for form and button, but didn't achieve the exact result. Any help please?

Aucun commentaire:

Enregistrer un commentaire