HTML Tutorial


 Forum HomeForum Home   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
Any Way?
Post new topic   Reply to topic    HTML Help Forum Index -> HTML Table
View previous topic :: View next topic  
Author Message
Cookie Monster



Joined: 27 May 2005
Posts: 13

PostPosted: Sat Nov 24, 2007 2:16 pm     Any Way? Reply with quote

Hello

Currently trying to set up my portfolio website and having trouble centering an image both horizontally and vertically on the page.


I wondered if it would be possible to create a 3 row by 3 collumn table that fits to the users browser window and centres whatever is in the centre cell.

Any way of doing this?

If theres an easier way of centreing an image in a browser window please tell me. I've used firefox layers before but have had feedback from people telling me there higher aspect ration monitors dont show it centred.

Cheers

Scott
sticks464



Joined: 31 Dec 2006
Posts: 1113

PostPosted: Sat Nov 24, 2007 7:37 pm     Reply with quote

This way
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<style type="text/css">
#container {
width:752px;
height:100%;
margin:0 auto;
}
table {
width:752px;
height:500px;
position:absolute;
top:50%;
margin-top:-250px;
}
</style>
</head>

<body>
<div id="container">
<table border="1" cellspacing="4" cellpadding="0">
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
</div>
</body>
</html>
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> HTML Table All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial