Results 1 to 2 of 2

Thread: Table border help

  1. #1
    Join Date
    Dec 2007
    Posts
    4

    Table border help

    Is there a way to have a border for the perimeter of the table , but not for the inside lines? Or, just not the horizontal lines?

  2. #2
    Join Date
    Feb 2006
    Location
    Salisbury UK
    Posts
    4,332
    You need to use CSS, putting the styles in a separate stylesheet or inside <style>..</style> tags in the head section:-

    Put this in the head section of your html page:-
    <style type="text/css">
    table { border: 1px solid black; }
    </style>

    OR

    edit your table body markup in the html file:-
    <table style="border: 1px solid black;">
    <tr>
    <td>......
    </td></tr></table>

    OR

    Put this in a separate stylesheet:-
    table { border: 1px solid black; }

    and don't put any border size in the table body markup like border="1" which would put a border around the table and cells.

    You can vary this by having just horizontal borders, left borders or whatever you want for the cells.

    If you add
    td { border-left: 1px solid red; border-right: 1px solid red; } to the style in a stylesheet or head section style tags then all cells will have just vertical borders.

    By giving one td cell a class you can have borders just for that cell only.

    See
    http://www.wickham43.supanet.com/tut...raladvice.html
    Last edited by Wickham; 08 Dec 2007 at 07:29 AM.
    Code downloaded to my PC will be deleted in due course.
    WIN7; IE9, Firefox, Opera, Chrome and Safari for Windows; screen resolution usually 1366*768.
    Also IE6 on W98 with 800*600 and IE8 on Vista 1440*900.

Similar Threads

  1. table border problem - please help
    By fadetoblack in forum Web Design, HTML Reference and CSS
    Replies: 1
    Last Post: 05 Jan 2007, 09:34 AM
  2. table border color difference?
    By web88js in forum Web Design, HTML Reference and CSS
    Replies: 1
    Last Post: 11 May 2006, 12:43 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •