bootstrap图标浮到最右边

时间:2017-01-11 07:51:48

标签: css twitter-bootstrap

我的图标总是漂浮到最右边。

见下图: See image below. 它并没有留在输入旁边。

我的代码是:

 <div class="form-horizontal">

  <div class="form-group">
        @Html.Label("date", htmlAttributes: new { @class = "control-label col-md-2" })

            <div class="form-group">
                <div class="col-md-10">


                    <div class="input-group date" id="datetimepicker1">
                        @Html.EditorFor(model => model.pdate, new { htmlAttributes = new { @class = "form-control" } })
                        @Html.ValidationMessageFor(model => model.pdate, "", new { @class = "text-danger" })
                        <span class="input-group-addon">
                            <span class="glyphicon glyphicon-calendar"></span>
                        </span>
                    </div>
                </div>
            </div>
    </div>

2 个答案:

答案 0 :(得分:1)

不知道为什么在代码中使用嵌套的表单组

可能是您在输入字段上添加了一些css,因此请将其删除。

只需从下面的答案中删除此css,然后查看差异:

 #datepk{
  max-width: 200px;
}

.input-group-addon{
  width: 0%;
}
#datepk{
  max-width: 200px;
}
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Case</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<style>

</style>
<body>

<div class="container">
  <div class='col-sm-6'>
  <div class="form-group">
    <div class='input-group date' id='datetimepicker1'>
      <input id="datepk"type='text' class="form-control" />
      <span class="input-group-addon">
        <span class="glyphicon glyphicon-calendar"></span>
      </span>
    </div>
  </div>
</div>
  
</div>
  

  

</body>
</html>

答案 1 :(得分:0)

您正在使用&#39; .input-group-addon&#39;类。在此课程中,有一个属性width: 1%;(来自bootstrap.css

显示属性是table-cell;

所以,你的

<span class="input-group-addon">
      <span class="glyphicon glyphicon-calendar"></span>
</span>

仅占整个1%的{​​{1}}宽度。如果省略此属性,我认为你的问题将得到解决。

只需覆盖width .input-group-addon属性。

width: 1%;

或者给你想给他的任何宽度。 :-)