Twitter bootstrap bootstrap 3.0 popover宽度问题

Twitter bootstrap bootstrap 3.0 popover宽度问题,twitter-bootstrap,Twitter Bootstrap,我有一件很奇怪的府绸。它使人又高又瘦。这不是人们所期望的,但我很好奇如何解决这个问题 <div class="input-group"> <input id="JewelryDescription" name="JewelryDescription" data-bind="value: JewelryDescription" type="text" class="form-control control-font"> <span class="i

我有一件很奇怪的府绸。它使人又高又瘦。这不是人们所期望的,但我很好奇如何解决这个问题

<div class="input-group">
 <input id="JewelryDescription" name="JewelryDescription" 
   data-bind="value: JewelryDescription" 
   type="text" class="form-control control-font">
 <span class="input-group-addon">
 <a tabindex="0" data-toggle="popover" data-trigger="focus" title="" 
 data-content="Here is where the content goes and goes and could 
 go on and on and for awhile but should have some sort of limit." 
 data-original-title="Title">Help <i class="fa fa-question-circle"></i></a>                                                          </span>
小提琴:

添加
data placement=“left”
,它将有足够的空间并保持正常大小

添加
data placement=“left”
,它将有足够的空间并保持正常大小


定义div的宽度和高度(使用CSS或内联),它不应该以这种方式呈现。它可能是基于%s和屏幕大小进行渲染的,所以请尝试像素。请定义div的宽度和高度(使用CSS或内联),它不应以这种方式渲染。它可能基于%s和屏幕大小进行渲染,因此请尝试像素。
$(function () {
    // popup functionality 
    $('[data-toggle="popover"]').popover({
    });
});