-
i am fairly new to web design, i would say that i am better at the design part of it.
anyway i am learning css as i go along but i am stuck with changing a tables borders using css. :confused:
what i want is a 1px border around the merged cell but no border around the two cells on the right column.
i have attached the file to this thread, it would be very much appreciated if somebody would do this for me so i can see where i was going wrong.
thanks :classic:
-
set table border to 0, remove all "bordercolor" attributes and change your merged cell to the following:
Code:
<td width="376" rowspan="2" style="border: 1px solid #000000"> </td>
-