Hi all,
I have been using an ABMEditor for an HTML browser for displaying data.
Has worked well until I have got more adventurous with table styling and have now found a problem.
I can not include a bordered table (border does not work)
So question is there a simple browser I can plug in in place of ABMEditor?
I have been using an ABMEditor for an HTML browser for displaying data.
Has worked well until I have got more adventurous with table styling and have now found a problem.
I can not include a bordered table (border does not work)
Example from w3schools.com:
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<h1>Table with Collapsed Borders</h1>
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
</body>
</html>
So question is there a simple browser I can plug in in place of ABMEditor?