In my CSS code, I have the table border set to how I want it. When I test the mobile site in Google Chrome, the border shows up. When I test it on the Adobe Device Central, the borders are not there. Is there something special that I need to put into the code? I have the CSS and HTML below. Thanks!
CSS
.licenses {
border: 1px;
border-color:#000000;
height: 97px;
width: 300px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
-webkit-border: 1px;
-moz-border: 1px;
}
.cell {
border: 1px;
border-color:#000000;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
}
HTML
<table border="1" class="licenses">
<tbody>
<tr class="license">
<th class="cell" width="30%" height="23"><strong>License Holder</strong></th><th class="cell" width="20%"><strong>State</strong></th><th class="cell" width="20%"><strong>License Number</strong></th>
</tr>
<tr>
<td class="cell" height="24">Northern Insurance Services, Inc.</td>
<td class="cell">AZ</td>
<td class="cell">901144</td>
</tr>
<tr class="license">
<td class="cell" height="24">Northern Insurance Services, Inc.</td>
<td class="cell">CA</td>
<td class="cell">0750998</td>
</tr>
<tr>
<td class="cell" height="24">Northern Insurance Services, Inc.</td>
<td class="cell">GA</td>
<td class="cell">121671</td>
</tr>
<tr class="license">
<td class="cell" height="24">Northern Insurance Services, Inc.</td>
<td class="cell">IL</td>
<td class="cell">xxxx</td>
</tr>
<tr>
<td class="cell" height="24">Northern Insurance Services, Inc.</td>
<td class="cell">NV</td>
<td class="cell">561818</td>
</tr>
<tr class="license">
<td class="cell" height="24">Northern Insurance Services, Inc.</td>
<td class="cell">OR</td>
<td class="cell">818565</td>
</tr>
<tr>
<td class="cell" height="24">Northern Insurance Services, Inc.</td>
<td class="cell">TX</td>
<td class="cell">1502627</td>
</tr>
<tr class="license">
<td class="cell" height="24">Leo A. Schultz</td>
<td class="cell">AZ</td>
<td class="cell">114390</td>
</tr>
<tr>
<td class="cell" height="24">Leo A. Schultz</td>
<td class="cell">CA</td>
<td class="cell">0140815</td>
</tr>
<tr class="license">
<td class="cell" height="24">Leo A. Schultz</td>
<td class="cell">GA</td>
<td class="cell">580734</td>
</tr>
<tr>
<td class="cell" height="24">Leo A. Schultz</td>
<td class="cell">IL</td>
<td class="cell">xxxxx</td>
</tr>
<tr class="license">
<td class="cell" height="24">Leo A. Schultz</td>
<td class="cell">NV</td>
<td class="cell">574207</td>
</tr>
<tr>
<td class="cell" height="24">Leo A. Schultz</td>
<td class="cell">OR</td>
<td class="cell">127036</td>
</tr>
<tr class="license">
<td class="cell" height="24">Leo A. Schultz</td>
<td class="cell">TN</td>
<td class="cell">861328</td>
</tr>
<tr>
<td class="cell" height="24">Leo A. Schultz</td>
<td class="cell">TX</td>
<td class="cell">874098</td>
</tr>
<tr class="license">
<td class="cell" height="24">Jayne A. Smith</td>
<td class="cell">CA</td>
<td class="cell">0F50348</td>
</tr>
<tr>
<td class="cell" height="24">Amanda R. Reeves</td>
<td class="cell">CA</td>
<td class="cell">0F65619</td>
</tr>
<tr class="license">
<td class="cell" height="24">Jenna Struckhoff</td>
<td class="cell">CA</td>
<td class="cell">0H45681</td>
</tr>
</tbody>
</table>