0

Why can't I centerize my inputs when I use input-group? With input-group: http://jsfiddle.net/mr4pgk52/

<input style="margin: 0 auto; width: 200px;" type="text" class="form-control">

Without input-group: http://jsfiddle.net/56ss9e0c/

<div class="input-group><input style="margin: 0 auto; width: 200px;" type="text" class="form-control"></div>
try-catch-finally
  • 7,436
  • 6
  • 46
  • 67
dogisdev
  • 47
  • 1
  • 8

2 Answers2

1

just add

.input-group{ margin:0 auto;}

DEMO

himanshu
  • 1,732
  • 1
  • 11
  • 12
0

try to update

.input-group{
    margin:0 auto;
}
Aru
  • 1,840
  • 1
  • 12
  • 15