gpt4 book ai didi

html - 如何水平对齐CSS表格元素?

转载 作者:太空宇宙 更新时间:2023-11-04 08:04:15 26 4
gpt4 key购买 nike

尝试复制这种设计/结构:注意在 table 一侧的两个盒子下方和另一侧的一个大盒子下方! enter image description here我将如何使用表 css 实现此目的?这是我当前的代码,它是垂直堆叠的:

<body>

<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">
<tr>
<td align="center" valign="top">
<table border="0" cellpadding="20" cellspacing="0" width="600" id="emailContainer">
<tr>
<td align="center" valign="top">
<table border="0" cellpadding="20" cellspacing="0" width="100%" id="emailHeader">
<tr>
<td align="center" valign="top">
This is where my body content goes.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top">
<table border="0" cellpadding="20" cellspacing="0" width="100%" id="emailBody">
<tr>
<td align="center" valign="top">
This is where my body content goes.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top">
<table border="0" cellpadding="20" cellspacing="0" width="100%" id="emailFooter">
<tr>
<td align="center" valign="top">
This is where my body content goes.
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>

</body>

有什么想法吗?

最佳答案

Steven 是对的,在 theory :

the “correct” way to center a table using CSS. Conforming browsers ought to center tables if the left and right margins are equal. The simplest way to accomplish this is to set the left and right margins to “auto.” Thus, one might write in a style sheet:

  table
{
margin-left: auto;
margin-right: auto;
}

但是本答案开头提到的文章为您提供了使表格居中的所有其他方法。

一个优雅的css跨浏览器解决方案:这适用于 MSIE 6(怪癖和标准)、Mozilla、Opera 甚至 Netscape 4.x,无需设置任何显式宽度:

  div.centered 
{
text-align: center;
}

div.centered table
{
margin: 0 auto;
text-align: left;
}


<div class="centered">
<table>

</table>
</div>

看这个post

编辑中心这是水平的,只需更改必要的 css 或查看 here !

关于html - 如何水平对齐CSS表格元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46780648/

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