gpt4 book ai didi

html - 表格标题上的按钮

转载 作者:太空宇宙 更新时间:2023-11-03 18:39:46 25 4
gpt4 key购买 nike

我有一个旧站点的问题,我需要在 div 元素中放置一个按钮,但要放在表格的顶部。

<div class="panel2" style="border: 1px solid red;">
<div id="charInfo">
<input type="button" id="lockList" name="lockList" value="Lock WL" />
<table width="500px" style="border:1px solid #000;border-collapse:collae;font-familyrif;font-size:80%;">
<caption style="font-size:140%;padding:5px;">Wish list status <b>Tyde</b>
</caption>
<thead>
<tr>
<th scope="col">Zone name</th>
<th scope="col">Wish Items</th>
<th scope="col">Received</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
<tr></tr>
<tr>
<th scopre="row">Heart of Fear</th>
<td align="center">22</td>
<td align="center">0</td>
<td align="center" style="color:Green;"><b>Active</b>
</td>
</tr>
<tr>
<th scopre="row">Mogu-shan Vaults</th>
<td align="center">27</td>
<td align="center">4</td>
<td align="center" style="color:Green;"><b>Active</b>
</td>
</tr>
<tr>
<th scopre="row">Throne of Thunder</th>
<td align="center">45</td>
<td align="center">0</td>
<td align="center" style="color:Green;"><b>Active</b>
</td>
</tr>
<tr>
<th scopre="row">Throne of Thunder (Heroic)</th>
<td align="center">5</td>
<td align="center">1</td>
<td align="center" style="color:Red;"><b>Not locked</b>
</td>
</tr>
</tbody>
</table>
</div> </div>

我这里有一个例子http://jsfiddle.net/TvwKz/

如您所见,按钮位于右侧,但我希望将其置于表格标题的顶部。可以做到吗?如果可以,怎么做?
这是我想要的

(来源:odinsoft.dk)

最佳答案

你可以这样

CSS

#lockList {width:auto;margin:auto;position: relative;}

HTML

<caption style="font-size:140%;padding:5px;">Wish list status <b>Tyde</b>
<input type="button" id="lockList" name="lockList" value="Lock WL" />
</caption>

演示:http://jsfiddle.net/ypAVr/

关于html - 表格标题上的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17855525/

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