我有一個頁面的divs
列表:查找可見部分,並把記在它上面
<div class="section"><span>Client Information </span>
<!-- Some fields here -->
</div>
<div class="section"><span>Billing Information </span>
<!-- Some fields here -->
</div>
<div class="section"><span>Contact Information </span>
<!-- Some fields here -->
</div>
當用戶滾動我想一個Note
上的瀏覽器中可見部分的頁面頂部。
<div class="note">Note:Please fill all the required fields</div>
例如
當頁面加載和
Client Infomation
是可見部分。注意應該出現在客戶信息部分的頂部。用戶向下滾動,
Billing Information
是可見部分。注意應顯示在「結算信息」部分的頂部。當用戶下降到
Contact Information
部分時,注意應顯示在聯繫信息部分的頂部。如果用戶滾動回
Client Information
部分,則應在客戶信息頂部顯示註釋。
重要1:注意DIV應該只出現在部分不重疊部分領域的頂部。
我嘗試使用
.note {
position:fixed;
width:100%;
z-index:1080;
}
但是,這使得筆記DIV重疊部分領域,我不知道。
重要提示2:部分div低於固定導航欄和徽標。這樣當第一部分可見時。注意div必須放置在徽標和第一部分之間。
什麼是'位置的問題:固定'?當筆記和div碰撞時會發生什麼? – raam86