Table border (outside only)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mike

    Table border (outside only)

    Is there a way to have a border around the outside of a table, but not
    around each cell in the table?
  • Chris Morris

    #2
    Re: Table border (outside only)

    mwc0914@aol.com (Mike) writes:[color=blue]
    > Is there a way to have a border around the outside of a table, but not
    > around each cell in the table?[/color]

    HTML: <table frame="border">
    CSS: table { border: thin black solid; } /* or other border styles */

    The CSS route is usually easier in the long run.

    --
    Chris

    Comment

    Working...