Click to See Complete Forum and Search --> : How do you take away page margins?


Web-baka
09-21-2005, 04:07 PM
:confused: I can't figure out how to take away the blank space around the page content. Could anyone help me out?

DaveSW
09-21-2005, 04:09 PM
<style type="text/css"><!--
body {
margin: 0;
padding: 0;
}
--></style>

Web-baka
09-21-2005, 08:28 PM
Ahh thank you.

Sunny G
09-22-2005, 10:59 AM
Give this a try:

* {
margin:0;
padding:0;
}The * bends everything in the page to it's will--in this case it removes all padding and margins that the brower puts in automatically, which gives you the chance to put in all the paddings and margins so the page is exactly as you want it.
I hope that helped.