nucklearknight
New Member
Is there a way I can make something like a picture appear in the middle of the page. By that I mean centered vertically and horizontally? Using HTML?
<img src="image.jpg" style="display: block; margin-left: auto; margin-right: auto;" />
<center>
</center>
![]()
<table align="center" width="800">
<tr valign="middle">
<td><img src="oldstandards.jpg" /></td>
</tr>
</table>
Exactly like that!
Exactly like that!
Do I need to know CSS or is there a way to do it with HTML?
Exactly like that!
Do I need to know CSS or is there a way to do it with HTML?
Thanks a lot!if you were 100% deadset on using html, and all you were doing was the picture, i'd do something like this:
<table width="100%" height="100%">
<tr>
<td valign="center" align="center">
<img src="blah.xxx" />
</td>
</tr>
</table>
(shrug)