How to Indent Tables?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zeroblade
    New Member
    • Oct 2007
    • 8

    How to Indent Tables?

    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
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    I don't know what you mean by indenting tables.

    Comment

    • zeroblade
      New Member
      • Oct 2007
      • 8

      #3
      Sorry, what I mean by indent is the tables position. Like moving a table more to the left or right.

      Comment

      • drhowarddrfine
        Recognized Expert Expert
        • Sep 2006
        • 7434

        #4
        [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]

        Comment

        Working...