Can someone lend me a hand with a CSS issue I'm facing? I want to create some CSS "classes" for tables in my form, but I can only get the borders to display correctly on one of the tables. Here is the code I've been using:
table.paddedTable table
{
border-collapse: collapse;
padding-bottom:2px;
border-style: solid;
border-color: black;
border-width: 3px;
height: 100px;
}
I am applying this to the table by using
<table class = "paddedTable">