Прикрепить Div сверху, слева, справа.
Прикрепить div сверху:
#top-div { position:fixed; width:100%; top:0px; } Прикрепить div слева: #left { position:fixed; width:50px; height:200px; top:150px; background-color:#333; } Прикрепить div справа: #right{ position:fixed; width:100px; height:300px; top:150px; background-color:#333; margin-left:100%; left:-100px; } |