Moonlit
09-13-2003, 12:55 AM
Is there any way to get rid of that natural space that the browser puts between the very top of the screen and the image or text below it? I just want my image flush with the very top of the screen.
Thanks :)
Thanks :)
|
View Full Version : space Moonlit 09-13-2003, 12:55 AM Is there any way to get rid of that natural space that the browser puts between the very top of the screen and the image or text below it? I just want my image flush with the very top of the screen. Thanks :) starlet 09-13-2003, 01:03 AM With CSS add: body {margin:0px;} or without: <body topmargin="0"> (you can also use leftmargin, rightmargin and bottommargin) |