Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

a anoying border - <table>

Status
Not open for further replies.

Busken

Technical User
Dec 14, 2004
19
SE
I´v used tables to build up the page, but i get a border around the table. How can I make this go away?
 
Busken,

Try to stay away from tables unless used for holding data....ie; from a database. But tables are still widely used and I recommend using css instead of obsolete html tags to give you the affect you want--more powerful and can be used as an external file to be pointed to multiple web pages; hence, saving HOURS updating because you update one page instead of multiple:

Code:
<html>
 <head>
<style type="text/css">

table{background-color: #fff;
      border-color: black;
      border-style: solid;
      border-width: 0px 0px 0px 0px;
     }
</style>
</head>
<body>

<!-- code --> 
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top