私が取り組んでいるユーザー インターフェイスを説明するために、div にツールチップを配置しようとしています。
右側の div では、ツールチップがうまく表示されます。
UI のもう一方の端には、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">
左側に正しく表示するにはどうすればよいですか?