How to put multiple Bootstrap inputs on same line?

Nate

I have the following HTML:

<input type="text" class="form-control" name="watch" value="" placeholder="watch">

<div class="input-group">
    <span class="input-group-addon">$</span>
    <input type="number" class="form-control" name="price" value="" placeholder="Price (optional)" style="width: 140px;">
</div>

<span class="btn btn-primary" onclick="update($(this));"><span class="glyphicon glyphicon-upload" aria-hidden="true"></span> Update</span>

JSFIDDLE

It renders like this:

enter image description here

How can I get both inputs and the button on the same line? I've been messing with the CSS but can't seem to get it to work. I was able to get it working with a table, but I know a CSS solution would be "better."

Kilreaux

You can use Inline Forms like in the Bootstrap Documentation found here: https://getbootstrap.com/docs/3.4/css/#forms-inline

The 'form-inline' class is probably what you're looking for.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I take multiple inputs from the same line?

From Dev

How to get multiple inputs on the same line without white space

From Dev

How can I take multiple inputs from the same line?

From Dev

Put form inputs in the same line fails after 2 times

From Dev

How to put "form" in same line?

From Dev

How to update multiple inputs with bootstrap-datepicker

From Dev

How to get multiple inputs in one line in C?

From Dev

How to take multiple inputs in java in a single line

From Dev

Bootstrap multiple inputs inline

From Dev

multiple line inputs in C

From Dev

How to put multiple user inputs into a dictionary and then print in numerical order

From Dev

Multiple inputs with same name

From Dev

Bootstrap multiple labels and input on same line

From Dev

How do I put multiple links on the same line? (HTML5)

From Dev

How to put Bootstrap 3 Wells on the same row?

From Dev

How to put image and input on the same line with css

From Dev

How to put Input and Icon in the same line Materialize?

From Dev

how to put 6 divs in the same line?

From Dev

How to put Input and Icon in the same line Materialize?

From Dev

Codeigniter: How do I pass multiple inputs with multiple same names?

From Dev

Codeigniter: How do I pass multiple inputs with multiple same names?

From Dev

How would I create two inputs per line with Bootstrap?

From Dev

How to have all the inputs on the same line C++

From Dev

How do I do user inputs on the same line in Lua?

From Dev

Bootstrap 3: How to get two form inputs on one line and other inputs on individual lines?

From Dev

How to make multiple segmented inputs in a single input group in Bootstrap

From Dev

How to set default value for multiple inputs from one line in python

From Dev

How read multiple inputs from one line in java?

From Dev

How to set default value for multiple inputs from one line in python

Related Related

  1. 1

    How can I take multiple inputs from the same line?

  2. 2

    How to get multiple inputs on the same line without white space

  3. 3

    How can I take multiple inputs from the same line?

  4. 4

    Put form inputs in the same line fails after 2 times

  5. 5

    How to put "form" in same line?

  6. 6

    How to update multiple inputs with bootstrap-datepicker

  7. 7

    How to get multiple inputs in one line in C?

  8. 8

    How to take multiple inputs in java in a single line

  9. 9

    Bootstrap multiple inputs inline

  10. 10

    multiple line inputs in C

  11. 11

    How to put multiple user inputs into a dictionary and then print in numerical order

  12. 12

    Multiple inputs with same name

  13. 13

    Bootstrap multiple labels and input on same line

  14. 14

    How do I put multiple links on the same line? (HTML5)

  15. 15

    How to put Bootstrap 3 Wells on the same row?

  16. 16

    How to put image and input on the same line with css

  17. 17

    How to put Input and Icon in the same line Materialize?

  18. 18

    how to put 6 divs in the same line?

  19. 19

    How to put Input and Icon in the same line Materialize?

  20. 20

    Codeigniter: How do I pass multiple inputs with multiple same names?

  21. 21

    Codeigniter: How do I pass multiple inputs with multiple same names?

  22. 22

    How would I create two inputs per line with Bootstrap?

  23. 23

    How to have all the inputs on the same line C++

  24. 24

    How do I do user inputs on the same line in Lua?

  25. 25

    Bootstrap 3: How to get two form inputs on one line and other inputs on individual lines?

  26. 26

    How to make multiple segmented inputs in a single input group in Bootstrap

  27. 27

    How to set default value for multiple inputs from one line in python

  28. 28

    How read multiple inputs from one line in java?

  29. 29

    How to set default value for multiple inputs from one line in python

HotTag

Archive