Borders are easily applied to tables within HTML with the addition of attributes to the table tag.
In this case, to add a border and a border color, you simply need to add those tags to the table tag.
Example
<table border="1" bordercolor="blue">
<td>
</td>
</table>
This will show a blue border around the table. You can adjust the color and size of the border simply by changing the values between the inverted quotes. You can also accomplish this through CSS but for that tutorial you will have to go somewhere else. It is slightly more complicated.
Click here to see the Answer Discussion that preceded this summary.
|
|
|
Expert:
|
james.arnold
|
|
Date:
|
May 25, 2006
|
|
Time:
|
11:21
|
|
|
|
|
|
Login to rate this summary: Good | Bad
|
|
Borders can be added to almost any object in HTML by applying the "style" attribute to the tag.
Example
<table style="border: 1px solid blue">
Explanation:
border (the CSS attribute)
1px (the size - here in pixels)
solid (the style)
blue (the color)
Not so complicated after all...
Click here to see the Answer Discussion that preceded this summary.
|
|
|
Expert:
|
jgivoni
|
|
Date:
|
Jun 06, 2006
|
|
Time:
|
21:27
|
|
|
|
|
|
Login to rate this summary: Good | Bad
|
|