Home › Forums › JavaScript › Full screen div minus X px’s › Re: Full screen div minus X px’s
July 17, 2013 at 8:36 am
#143306
Participant
Why JS when you can do the same in CSS?
.header {
position: absolute; // Or even fixed
top: 66px;
bottom: 0;
left: 0;
right: 0;
}