gpt4 book ai didi

html - 我希望 HTML 表格中的列标题垂直打印

转载 作者:搜寻专家 更新时间:2023-10-31 08:04:03 25 4
gpt4 key购买 nike

我想要这张 table

id     name       country
-- ------- -------

1 John America
2 Smith Mexico
3 Khan India

打印成这样

id            1             2           3
name John Smith Khan
country America Mexico India

在 HTML 中。

<table>
<tr>
<th>id</th>
<th>name</th>
<th>country</th>
</tr>
<tr>
<td>1</td>
<td>John</td>
<td>America</td>
</tr>

我应该如何修改上面的代码以获得该输出?

最佳答案

     <table>
<tr>
<th>id</th><td>1</td>
</tr>
<tr>
<th>name</th><td>John</td>
</tr>
<tr>
<th>country</th><td>America</td>
</tr>
</table>

关于html - 我希望 HTML 表格中的列标题垂直打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13678284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com