Jump to content

Edit History

Old Scratch

Old Scratch

Deleting since I didn't write this and don't want it attributed to me.

Old Scratch

Old Scratch

8 hours ago, Eric said:

...so if you want to exert full control, you need to override properties like border-collapse and border-spacing, which are what are interfering with your example. The web inspector tools will be most helpful here.

 

Test

For anyone interested, I managed to get it working properly after lots of experimentation. Eric was close; you just need to include "border-collapse: separate;" in the Table tag to get it working properly.

<table style="border-collapse:separate;border:10px #00c double;padding:5px;">
	<tbody>
		<tr>
			<td style="border:10px #c00 double;padding:10px;background:#ccc;color:#000;">
				Test
			</td>
		</tr>
	</tbody>
</table>

 

×
×
  • Create New...