Making a skinny border around a table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I want to make a very skinny white border around my table.
I read on another post to just add columns and rows around it.
I can make the columns as skinny as I want them to be.
BUT the rows are not as flexible - they seem to get only as short as the
cursor at which point I can no longer make them shorter.

Any suggestion would be much appreciated! Thanks.
Jesse
 
Try changing this -

</head>

to this -

<style type="text/css">
<!--
table.special { border:1px solid white; }
-->
</style>
</head>

and your table tag from this -

<table...>

to this -

<table class="special"...>

(the ellipsis indicates any other attributes that may already be present in
the <table> tag)

and see if that looks right.
 
Back
Top