Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Fancybox (fancyapps.com) を使用してポップアップ ajax ウィンドウを使用しています。ポップアップの右下隅に div を配置する必要がありますが、その方法がわかりません。
position:fixed を試しましたが、div はポップアップの下部ではなく画面の下部に配置されます。ポップアップにコンテンツを表示するために、iframe ではなく Ajax を使用しています。
すべての入力に感謝します!
まず、divを外側のポップアップdiv内に配置する必要があります。divにid="lower-right-corner"があると仮定します。その場合、cssは次のようになります。
#lower-right-corner{ position: absolute; right: 0; bottom:0; }
これは、ポップアップの外部divが静的以外の位置にあることを前提としています。cssポジショニングの詳細については、次を参照してください。
http://www.w3schools.com/css/css_positioning.asp