エラーでポップオーバーを作成しようとしていますが、アタッチしている div の境界線の上に矢印を表示するのに問題があります。助けていただければ幸いです。
これは私がこれまでに持っているものです...
これは私が使用しているCSSコードですが、うまく動作しません:
1.ポップオーバー全体のDIV:
<div class="info-popover">
<div class="inner"></div>
<div class="arrow"></div>
</div>
2.それぞれのCSS:
.info-popover {
height: 250px;
margin-top: -255px;
position: absolute;
width: 400px;
}
.info-popover .inner {
background-color: #FFFFFF;
border: 1px solid #003366;
border-radius: 10px 10px 10px 10px;
height: 240px;
margin-top: 0;
width: 100%;
}
.info-popover .arrow {
background: url("/images/dock/popover-arrow.png") no-repeat scroll center -5px transparent;
height: 15px;
position: relative;
width: 100%;
z-index: 999;
}