
Originally Posted by
mayde
I just switched from PC to Mac, from FrontPage to Dreamweaver . . .
Hmm, from the frying pan into the fire . . .
Most of us 'hacks' here in the forums use a text editor to write all HTML and other code. What you are asking can be done a few different ways and there are other options that influence a table and cell(s) appearance that you haven't specified. Here is a good css method to achieve this, put this style section in the head of the page:
Code:
<style type="text/css">
.borderless {
border:none;
}
.borderless td {
border:none;
width:50%; /* this property/value pair optional */
}
#left_top {
border-top:1px solid black;
border-left:1px solid black;
}
</style>
Here is an example mark-up that could go with it. You can choose which cell gets the special treatment by assigning it the id:
HTML Code:
<table class="borderless">
<tr>
<td>Hi</td><td id="left_top"> there</td>
</tr>
<tr>
<td>mayde</td><td>row 2, cell 2</td>
</tr>
</table>
Bookmarks