Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm looking to create a table that has blank values.enter image description here 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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...