+ 1
Brainstorm
So, I have a home,about us, services, contact us all at my index page. How can I move them all to the uppermost part of the page.. it's really giving me a headache. Help please
1 Respuesta
+ 7
Let's suppose, they all are in a div with id container.
You can do :
#container {
position: absolute;
top : 0;
left : 0;
}
If u want to make it stick to the top of the page, u can use position : fixed.