Skip navigation
Currently Being Moderated

Outline border around several tables?????

Aug 16, 2011 3:12 AM

Any of you willing experts out there able to help me,

 

i am creating a website...

 

http://www.andybarrington.com/ice/index.html,     (this site is still under going construction)

 

using tables & css, and the customer has asked me if i was able to put a border around 'everything', my problems is ths at 'everything' is made up of about 2-3 tables.

 

How would i be able to put a border that goes around the 3 tables but obnly on the outer edges?

 

all the best

Andy Barrington

 

www.andybarrington.com

 
Replies
  • Currently Being Moderated
    Aug 16, 2011 4:40 AM   in reply to Andrew Barrington

    Why have you used table layout for this page?

     

    Why is there so much blank space below the content?

     

    Anyhow, the CSS method to put a border around a table would be -

     

    table { border:1px solid black; border-collapse:collapse}

     

    That will hit every table on the page, though, so you'll probably want to qualify it with a class:

     

    table.border { border:1px solid black; border-collapse:collapse }

     

    and then put the class in the table tag -

     

    <table class="border"...

     
    |
    Mark as:
  • Currently Being Moderated
    Aug 16, 2011 5:04 AM   in reply to Andrew Barrington
    Put a border on your <div> which is wrapping all the tables. Inline css shown below - 
    style="border: 1px solid #00000;" - Change #000000 to the color you need.

    <div align="center" style="border: 1px solid #00000;">

      <table width="800" height="85" cellpadding="0" cellspacing="0" bgcolor="5" 1="0">


    or give the <div> an id:

    <div align="center" id="wrapper">

    and in your css:

    #wrapper {
    border: 1px solid #000000;
    }
     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points