0

我试图将工具提示放在 div 上,以试图解释我正在处理的用户界面。

在右侧的 div 上,工具提示显示得很好,正是我想要的。

工作工具提示

在我的 UI 的另一端是一个最终覆盖整个 div 的工具提示!我希望它像其他 div 显示一样显示。

错误的工具提示! 即使我告诉它不要,它也覆盖了整个 DIV!

这是两者的html

工作版本:

  <div id="percentCompleteDiv"
                   class="container top-profile well text-center"
                   style="border-radius:3px;"
                   data-placement="right"
                   data-trigger="manual"
                   data-content="Displays the completion percentage
                   progress of the current upload"
                   data-original-title="Completion Percentage"
                   rel="popover">
                <h4 style="color:#555;">Complete Pct:</h4>
                <h3 id="uploadpercent">0%</h3>
              </div>

不工作的版本:

<div class="container text-center well"
               data-placement="left"
               data-trigger="manual"
               data-content="Displays the current cost of this Job.
               For more information on pricing see our pricing page"
               data-original-title="Estimated Cost"
               rel="popover">

如何让它正确显示在左侧?

4

0 回答 0