Answers for "how to put a vertical word on the left of a table in html"

0

how to put a vertical word on the left of a table in html

<table border="1">
                
                    <tr>
                        <td style="border: 0px; writing-mode: vertical-rl;transform: rotate(-90deg);" rowspan="3">info</td><th>num</th><th>name</th><th>major</th>
                    </tr>
                    <tr>
                        <td>1</td><td>xxxx</td><td>xx</td>
                    </tr>
                    <tr>
                        <td>2</td><td>xxxx</td><td>xx</td>
                    </tr>
                </table>
Posted by: Guest on April-22-2022

Code answers related to "how to put a vertical word on the left of a table in html"

Browse Popular Code Answers by Language