I am trying to add a left margin in a required field in my forms using some bootstrap class.
<div class="input-group input-group-sm"> <span class="input-group-addon label-danger" style="max-width:10px;"></span> <input id="Name"maxlength="30"/> </div>
This will give me the display that I am viewing in the entire browser except IE11. In IE11, the width remains the same as if I did not add the max-width attribute. This is a necessary result:

And this is what I get in IE11 (width is not the same)

source share