Connecting Tech Pros Worldwide Forums | Help | Site Map

How to Indent Tables?

Newbie
 
Join Date: Oct 2007
Posts: 8
#1: Mar 28 '08
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?

drhowarddrfine's Avatar
Expert
 
Join Date: Sep 2006
Posts: 5,569
#2: Mar 28 '08

re: How to Indent Tables?


I don't know what you mean by indenting tables.
Newbie
 
Join Date: Oct 2007
Posts: 8
#3: Mar 28 '08

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.
drhowarddrfine's Avatar
Expert
 
Join Date: Sep 2006
Posts: 5,569
#4: Mar 28 '08

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