Klevi
Klevi

Reputation: 45

I need help to add a scrollbar in div

Hello I need help for adding a scrollbar at div id header , I try it but it doesnt work. First I want a answer why it doesnt work and second answer for fix t

Upvotes: 0

Views: 63

Answers (2)

razemauze
razemauze

Reputation: 2676

I found your HTML in another thread you have created, and put it into a JSFiddle.

The problem is that your divs inside the header is fixed. Set it as relative like this, and the problem should be solved:

#headerLeft{
   top:0;
   position:relative;
   left:0px;
   width:630px;
   height:100px;
}

See JSFiddle.

Upvotes: 0

user4519195
user4519195

Reputation:

#header{
    top:0px;
    width:1023px;
    position:fixed; 
    overflow:auto;
    height: 100px;
}

change overflow:auto to overflow:scroll

Upvotes: 1

Related Questions