Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 11-14-2006, 02:19 AM cell borders
Novice Talker

Posts: 7
Trades: 0
I am using dreamweaver to create a webpage. I want the table border to be black but I do not want the cells to have borders so I set them to white. It looks fine in internet explorer but the borders still show in a greyish color in mozilla and netscape. Can anyone help? Thanks
edtybor is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-14-2006, 08:03 PM Re: cell borders
Junior Talker

Posts: 2
Trades: 0
You should be able to specify a single border on the outside of a table using CSS. I would avoid trying to style something that doesn't need style. Try this:

HTML Code:
<table style="border:1px solid black;">
    <tr>
        <td>cell 1</td>
        <td>cell 2</td>
        <td>cell 3</td>
    </tr>
</table>
You can also pull this style out into a linked style sheet.

HTML Code:
#my_table {
     border:1px solid black;
}
HTML Code:
<table id="my_table">
    <tr>
        <td>cell 1</td>
        <td>cell 2</td>
        <td>cell 3</td>
    </tr>
</table>
trandrus is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to cell borders
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.09514 seconds with 12 queries