0

サイトを完成させようとしていますが、カレンダーのポップアップ サマリーがカレンダーの下部にある [購読] ボタンの後ろに表示される理由がわかりません。z-index の問題だと思いますが、z-index css スタイルが機能しない理由がわかりません。

カレンダー ページのテスト URL はhttp://powhatan.idtestsite.com/eventsです。私が言及していることを確認するには、カレンダーの下部に移動し、「イベント 2」にカーソルを合わせます。購読ボタンの後ろに表示されます。

どんな助けでも素晴らしいでしょう!

4

2 に答える 2

0

What a mystery! You have position and z-index set on both elements...

Don't know how much it helps or hurts, but I did notice that the z-index behaves as expected in FF 14. In Chrome, I'm seeing the same behavior you report. Maybe that can help you track it down.

EDIT:

I found a solution - set the btn z-index to less than 0 (I used -1) and it behaves as expected in Chrome. This has to do with the lowest z-indexed item being absolutely positioned and the highest being relatively positioned. Sometimes those absolutely positioned elements write on top of relatively positioned ones, even though the indexes are set correctly.

于 2012-08-23T20:56:48.883 に答える
0

CSS に以下を追加し、カレンダーに関連する他のすべての z-index スタイルを要素化したところ、魅力的に機能しました。

#ai1ec-calendar-view-container { z-index: 1 !important; }

于 2012-08-24T21:17:32.007 に答える