I'm using the following to center my page to the top of the screen and also allow it to fill the screen regardless of resolution. The problem is it removes my spacing between paragraphs.
#container {
width: 100%;
margin-top: auto;
margin-bottom: auto;
}
* {
margin:0;
padding:0;
}
I'm learning the "ways of CSS" but am lost on this one.
Thanks for any pointers!
#container {
width: 100%;
margin-top: auto;
margin-bottom: auto;
}
* {
margin:0;
padding:0;
}
I'm learning the "ways of CSS" but am lost on this one.
Thanks for any pointers!
Comment