HTML window

Started by
3 comments, last by EvilCrap 19 years, 1 month ago
im displaying images in an html window, but it has a little white space border to the left and top. anyone know how to get rid of the border so that it is just the thin window border and caption?
Advertisement
<style type="text/css"><!--  body{    margin:0px;  }--></style>

throw that in ya header ;]
_______________________________ ________ _____ ___ __ _`By offloading cognitive load to the computer, programmers are able to design more elegant systems' - Unununium OS regarding Python
<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>


or the CSS above, btw there is a web dev forum [smile]
Quote:Original post by nts
<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>


or the CSS above, btw there is a web dev forum [smile]


Ahh non-standard(strict) all-caps tags.
thanks, this is what i wanted.

This topic is closed to new replies.

Advertisement