我有一個頁面,其中必須顯示動態消息框而不會影響實際頁面。此消息框必須出現在與現有內容重疊的頁面的右上角。如何在絕對位置右側放置div
我試過使用position: absolute
但後來我無法將它放在右上角。此外,我無法使用left
,因爲我必須支持Bootstrap的響應式設計。
下面是一個示例標記
<html>
<body>
<div class="container">
<!-- Need to place this div at the top right of the page-->
<div class="ajax-message">
<div class="row">
<div class="span9">
<div class="alert">
<a class="close icon icon-remove"></a>
<div class="message-content">
Some message goes here
</div>
</div>
</div>
</div>
</div>
<!-- Page contents starts here. These are dynamic-->
<div class="row">
<div class="span12 inner-col">
<h2>Documents</h2>
</div>
</div>
</div>
</body>
</html>
該消息框應具有50%
的寬度相對於所述.container
和消息框的左側不應當由它重疊。即我們應該能夠點擊/選擇左側的內容。
請找到樣品here。
請幫我解決這個問題。
http://stackoverflow.com/questions/11333624/css-float-right-and-position-absolute-doesnt-work-together – Nick 2016-01-08 18:57:51