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 对齐到屏幕底部而不是弹出底部。我正在使用 Ajax 而不是 iframe 在弹出窗口中显示内容。
感谢所有输入!
首先,您需要将 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