如何使用CSS将表格放在页面中央?
我正在使用以下代码。如何使用CSS将该表格放在页面的中央?
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>The Main Page</title>
</head>
<body>
<table>
<tr>
<td><button class="lightSquare"></button></td>
<td><button class="darkSquare"></button></td>
<td><button class="lightSquare"></button></td>
<td><button class="darkSquare"></button></td>
<td><button class="lightSquare"></button></td>
<td><button class="darkSquare"></button></td>
<td><button class="lightSquare"></button></td>
<td><button class="darkSquare"></button></td>
</tr>
</table>
</body>
</html>
I am using the following code. How to put this table in the center of the page using CSS?
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>The Main Page</title>
</head>
<body>
<table>
<tr>
<td><button class="lightSquare"></button></td>
<td><button class="darkSquare"></button></td>
<td><button class="lightSquare"></button></td>
<td><button class="darkSquare"></button></td>
<td><button class="lightSquare"></button></td>
<td><button class="darkSquare"></button></td>
<td><button class="lightSquare"></button></td>
<td><button class="darkSquare"></button></td>
</tr>
</table>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
2022 年编辑:Flexbox 请
使用 Flexbox,说明如下:https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Aligning_Items_in_a_Flex_Container
2021 年答案保留如下。
示例 JSFiddle
垂直对齐块元素并不是最简单的事情。下面一些方法。
Edit for 2022: Flexbox Please
Use Flexbox, instructions here: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Aligning_Items_in_a_Flex_Container
2021 answer preserved below.
Example JSFiddle
Vertically aligning block elements is not the most trivial thing to do. Some methods below.
您可以尝试使用以下 CSS:
You can try using the following CSS:
1) 在 CSS 中设置水平对齐方式为 auto
margin-left: auto;
margin-right: auto;
2) 垂直对齐到页面中心 添加以下内容到 css
html, body {
宽度:100%;
例如
:
1) Setting horizontal alignment to auto in CSS
margin-left: auto;
margin-right: auto;
2) Get vertical alignment to centre of the page add following to css
html, body {
width: 100%;
}
For example :
如果您询问要完成中心的表格,例如总中心的某些内容。,
您可以应用以下代码。
css 中的这段代码可以让你把你的表格像浮动一样。
告诉我是否对你有帮助。
If you where asking about the table to complete center, like some thing in total center.,
you can apply the following code.
this code in css will let you put your table like floating.
Tell me if it helps you out.
您可以使用“显示:flex;”。
You can use "display: flex;".
只需将其放在 div 中,然后通过 css 控制该 div:
simply put it in the div then control that div whit css: