Connecting Tech Pros Worldwide Help | Site Map

How to Indent Tables?

  #1  
Old March 28th, 2008, 12:58 AM
Newbie
 
Join Date: Oct 2007
Posts: 8
I'm trying to indent my tables and I don't want to use the align property because it doen't give me enough accuracy. Is there something I can use like   except for tables?
  #2  
Old March 28th, 2008, 01:05 AM
drhowarddrfine's Avatar
Expert
 
Join Date: Sep 2006
Posts: 5,521

re: How to Indent Tables?


I don't know what you mean by indenting tables.
  #3  
Old March 28th, 2008, 03:09 AM
Newbie
 
Join Date: Oct 2007
Posts: 8

re: How to Indent Tables?


Sorry, what I mean by indent is the tables position. Like moving a table more to the left or right.
  #4  
Old March 28th, 2008, 03:52 AM
drhowarddrfine's Avatar
Expert
 
Join Date: Sep 2006
Posts: 5,521

re: How to Indent Tables?


[HTML]<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
table{
margin-left: 100px
}
</style>
</head>
<body>
<table>
<tr>
<td>This is a table
</td>
</tr>
</table>
</body>
</html>[/HTML]
Reply


Similar Threads
Thread Thread Starter Forum Replies Last Post
Which implementation will give faster result (Table design to Joins) prileep answers 2 February 26th, 2007 06:07 PM
How to do a <table> with <div> tag Toby Austin answers 61 July 20th, 2005 07:27 PM
Opera 7.23 doesn't show me inner tables Mariusz Jedrzejewski answers 44 July 20th, 2005 06:24 PM
splitting tables robsom answers 18 July 18th, 2005 09:25 AM