Skip to main content
Participant
June 15, 2007
質問

Is it possible to change the border thickness of just one cell / row / column in a table, and leave else the same?

  • June 15, 2007
  • 返信数 1.
  • 305 ビュー
Is it possible to change the border thickness of just one cell / row / column in a table, and leave else the same?
このトピックへの返信は締め切られました。

返信数 1

Inspiring
June 15, 2007
Sure - use CSS....

td.special { border:6px solid green; }

will style just this one cell -

<table>
<tr>
<td class="special">this one will have the border</td>
<td>but not this one</td>
</tr>
</table>

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"dm25" <webforumsuser@macromedia.com> wrote in message
news:f4ufgp$51c$1@forums.macromedia.com...
> Is it possible to change the border thickness of just one cell / row /
> column in a table, and leave else the same?