I'm looking to create a table that has blank values.
I wrote code to build a template:
<table style="width: 50%; border: 0.5px">
<thead>
<tr>
<th scope="col" style="width: 25%;">LC</th>
<th scope="col" style="width: 25%;">PN</th>
<th scope="col" style="width: 25%;">DESCRIPTION</th>
<th scope="col" style="width: 25%;">QTY</th>
<th scope="col" style="width: 25%;">AMT</th>
</tr>
</thead><tr>
<td style="width: 25%;"></td>
<td style="width: 25%;"></td>
<td style="width: 25%;"></td>
<td style="width: 25%;"></td>
</tr></table>
</body>
i'd like to have it render like one of the tables at the bottom, but it renders with only the title showing up. How can I adjust the code to 1. get the tables to appear with all boxes like in the image, 2. get them to dispaly side by side?
question from:
https://stackoverflow.com/questions/65944075/freemarker-table 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…