I tried this, but still get borders.
With this CSS in place, I even see the debug log of 'setting borders to none'.
I've tried this with 2.8.0 and 2.8.1.
Here is a simple sample of an html file that has borders in the docX out.
- Code: Select all
<html>
<head>
<title>roses</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
body {
margin: 20px;
font-family: "Times New Roman", Times, serif
}
table {
border: 0;
border-collapse: collapse;
border-top-style: none;
}
ul {
list-style: none;
}
.num-col {
width: 65px;
vertical-align: top;
color: #BBB;
font-weight: 100;
font-size: 0.8em;
text-align: right;
padding-right: 10px;
height: 17px;
}
</style>
</head>
<body>
<h3>roses</h3>
<div id="base-text">
<table>
<tr><td class="num-col"> </td><td>Roses are crimson</td></tr>
<tr><td class="num-col"> </td><td>Violets are blue and purple</td></tr>
<tr><td class="num-col"> </td><td>Skunk cabbage</td></tr>
<tr><td class="num-col"> </td><td>And so do you too</td></tr>
</table>
</div>
<div id="textual-notes">
<h4>Textual Notes</h4>
<ul>
<li>W1: rose2 - This is the base text.</li>
<li>W2: rose1</li>
</ul>
</div>
<div id="apparatus">
<table>
<tr><td class="num-col">1</td><td>crimson] W1; red: W2; </td></tr>
<tr><td class="num-col">2</td><td>and purple] W1; <i>not in </i>W2; </td></tr>
<tr><td class="num-col">3-4</td><td>cabbage And] W1; cabbage stinks And: W2; </td></tr>
<tr><td class="num-col">4</td><td>too] W1; <i>not in </i>W2; </td></tr>
</table>
</div>
</body>
</html>