DEV

twitter bootstrapの吹き出し

参考:http://getbootstrap.com/2.3.2/javascript.html#popovers

静的に吹き出しを使いたい場合は、下記のような感じでやります。

<div class="popover right show" style="position:relative; max-width:100%;">
<div class="arrow"></div>
<h3 class="popover-title">
タイトル
</h3>
<div class="popover-content">
<p>
内容
</p>
</div>
</div>