navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

 

Table and Cell borders in FP

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> Microsoft FrontPage Help >> Table and Cell borders in FP
Page: [1]
 
sarahtar

 

Posts: 4
Joined: 11/4/2005
Status: offline

 
Table and Cell borders in FP - 11/4/2005 12:22:02   
Is there a way to have a cell of a table have borders on only the top and bottom, but not the sides? (or, is there a relatively easy way?)
fearnosurf

 

Posts: 149
Joined: 8/15/2005
Status: offline

 
RE: Table and Cell borders in FP - 11/4/2005 13:01:35   
<table border="0" width="100%">
<tr>
<td style="border-left-width: 1px; border-right-width: 1px; border-top-style: solid; border-top-width: 1px; border-bottom-style: solid; border-bottom-width: 1px"> </td>
</tr>
</table>

(in reply to sarahtar)
bobby

 

Posts: 11394
Joined: 8/15/1969
From: Seattle WA USA
Status: offline

 
RE: Table and Cell borders in FP - 11/4/2005 18:39:39   
You can do it from the table properties menu as well. Under borders and shading if I recall...

_____________________________

If con is the opposite of pro, is Congress the opposite of progress?


:)

(in reply to fearnosurf)
Kitka

 

Posts: 2520
Joined: 1/31/2002
From: Australia
Status: offline

 
RE: Table and Cell borders in FP - 11/4/2005 22:55:00   
quote:

<table border="0" width="100%">
<tr>
<td style="border-left-width: 1px; border-right-width: 1px; border-top-style: solid; border-top-width: 1px; border-bottom-style: solid; border-bottom-width: 1px"> </td>
</tr>
</table>


Wow - that works but is a very looong way of expressing it. :)

Given that one strength of CSS is reducing code bloat, I'd highly recommend this method instead:

<table border="0" width="100%">
<tr>
<td style="border:solid black; border-width:1px 0;">Cell contents</td>
</tr>
</table>


Change colour and width to suit your needs.

_____________________________

Kitka
**It is impossible to make anything foolproof because fools are so ingenious.**


(in reply to fearnosurf)
Page:   [1]

All Forums >> Web Development >> Microsoft FrontPage Help >> Table and Cell borders in FP
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts