How would I do the following layout in pure css.
3 columns with percentage based width, not px.
and a sticky header that is only in the middle column, not left/right.
When scrolling, over any! of the 3 column, only content in the middle column scrolls. Kind of how twitters layout is.
edit: this is what i got so far, the sticky header wont stick. when i scroll to the bottom, it "disappears" https://jsfiddle.net/pkrbc7dm/
html,body{height:100%}
.wrap{width:100%;height:100%;position:relative}
.left,.right{width:20%;top: 0; bottom: 0px;position: fixed;}
.left,.center,.right,.bodywrap{height:100%}
.center{margin:0 20%;}
.left{left:0}
.right{right:0}
.left{background-color:#aaa}
.right{background-color:#ccc}
.head2{
background-color:tomato;
width:100%;
position:sticky;
top:0;
}
left
right
HEADER
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
hello world, hello world, hello world, hello world, hello world,
see below picture for what i mean
thank you
