With Bootstrap 3.x I can create a form with an input field type of "file" as shown in the Bootstrap documentation:
<form role="form">
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
</div>
<form>
However, I can't figure out a way to put the "file" input field within an input group so the input field is on the left and the browse button on the right, all inline. Something like the following just places the above inside a text box with the browse button to the left of the input field:
<div class="row">
<div class="col-lg-12">
<div class="input-group">
<input type="file" class="form-control">
</div>
</div>
</div>
I suspect I can't use the standard Bootstrap CSS to do put a file input field inline, but thought I would ask.