Closed Thread Icon

Topic awaiting preservation: Flush (Script) With Margins HTML ? (Page 1 of 1) Pages that link to <a href="https://ozoneasylum.com/backlink?for=7983" title="Pages that link to Topic awaiting preservation: Flush (Script) With Margins HTML ? (Page 1 of 1)" rel="nofollow" >Topic awaiting preservation: Flush (Script) With Margins HTML ? <span class="small">(Page 1 of 1)</span>\

 
Dreaen
Bipolar (III) Inmate

From: Toronto, Canada
Insane since: Jun 2000

posted posted 12-14-2001 23:39

Hi!

I've seen a lot of popup windows where the entire window is occupied by a table/image(it's flush with the browser margin). Can this be done with regular tables (HTML) or do I have to use CSS etc.

Help!

Thanks

Dreaen

bitdamaged
Maniac (V) Mad Scientist

From: 100101010011 <-- right about here
Insane since: Mar 2000

posted posted 12-14-2001 23:50

<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>

Or CSS

<style>
body {margin: 0px}
</style>


Whoops kinda missed the question there. Actually you need to make the body margin 0 then make the width of the table 100%

<html>
<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>
<table cellpadding=0 cellspacing=10 border=0 bgcolor="#ccee00"width=100% height=100%>
<tr>
<td width=100% bgcolor="#336699" height=100%>

</td>
</tr>
</table>
</html>

That should give the look you are asking about.




:[ Computers let you make more mistakes faster than any other invention in human history, with the possible exceptions of handguns and tequila. ]:

[This message has been edited by bitdamaged (edited 12-15-2001).]

Dreaen
Bipolar (III) Inmate

From: Toronto, Canada
Insane since: Jun 2000

posted posted 12-15-2001 00:35

Hey!

Thanks for that bitdamaged. That hit the ole spot.

Dreaen

« BackwardsOnwards »

Show Forum Drop Down Menu