2

ここにポップオーバー div を表示しようとしています 。疑問符のアイコンをクリックしてください。すべてのブラウザーに表示されるポップオーバー div があることに気付くでしょう。ただし、Internet Explorer 7 では正しく表示されません。z-index プロパティを使用してみましたが、うまくいかないようです。入力フィールドの上にポップオーバーを表示するにはどうすればよいですか?

以下はHTMLのサンプルです

<div class="col-xs-5 divPopUp">
<label class="control-label customerAccountNo" for="custom4">Customer Acct No</label>
<img src="32005/images/iconQuestion.png" alt="Help" data-toggle="popover" data-placement="right" data-content="Found on the Plush Rewards flyer provided at the store. Lost this? Please contact the store you purchased from" class="popUp customerAccountNoImg"/> </div>

問題のスクリーンショットが追加されました:

ポップオーバー div が入力の後ろに隠れていることに注意してください

4

1 に答える 1

2

フィドルなしで解決するのは簡単ではありませんが、IEデバッグツールを使用して問題を解決できましたが、実際の例で実際に機能するかどうかはわかりません.

div col-xs-5 に z-index を追加しました:

<div class="col-xs-5 divPopUp" style="z-index: 100">

この要素の css を編集できますか?

于 2013-09-19T10:07:12.823 に答える