gpt4 book ai didi

css - 使用 CSS 更改页面中表格的位置

转载 作者:行者123 更新时间:2023-11-28 06:33:47 26 4
gpt4 key购买 nike

我有一个表格,它在页面的末尾:

<table class="fes-display-field-table fes-submission-form-display-field-table">
</table>

现在我想将该表移动到:

<h2 class="section-title"><span>Giới thiệu về Dịch vụ</span></h2>
TABLE HERE
<article id="post-8306" class="post-8306 type-download status-publish format-standard hentry...>

有什么办法可以用 CSS 实现吗?这是我的 css 文件:https://jsfiddle.net/wcq1ft3k/

最佳答案

这就是你想要的。您必须为表格样式提供 position 属性。我只关心表格的位置。试试这段代码。然后更改 lefttop 的值。认为您的表类名称是 mytable

<html>
<head>
<title></title>
</head>
<style type="text/css">
.mytable{
border: 1px solid black;
position: absolute;
top: 200px;
left: 300px;
}
</style>
<body>

<table class="mytable">
<tbody>
<tr>
<th style="width:200px; border-right:1px solid black;">one</th>
<th style="width:200px">two</th>
</tr>
<tr>
<td>detail one</th>
<td>detail two</th>
</tr>
</tbody>
</table>



</body>
</html>

希望对您有所帮助。

关于css - 使用 CSS 更改页面中表格的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34824418/

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