字形输入错误 bootstrap angularjs

glyphicon input wrong bootstrap angularjs

我有一个小问题,当我想外部化我的输入时,我的字形图标的位置是错误的,但我不知道为什么。

<div class="form-group"
                         ng-class="{ 'has-error has-feedback': comment_fields.$submitted && comment_fields.test.$invalid }">
                        <input-test  model-ua="$ctrl.test"></input-test>
                         <span ng-show="comment_fields.$submitted && comment_fields.test.$invalid"
                               class="glyphicon glyphicon-remove form-control-feedback"></span>
                    </div>

如果这是字形的位置放置问题,我建议添加这个 CSS:

glyphicon-remove:before{
  top: 0px;
  left: 0px
}

您将不得不调整顶部和左侧位置,以将其放置在您需要的位置。