div的水平和垂直对齐

发布于 2024-09-27 14:28:48 字数 118 浏览 4 评论 0原文

我正在使用 JQuery。我有一个包含表格的 div。我的表中有 4 行,每行有一个列。每行包含一行或两行文本,

我想让每行的高度 = 100 px,并使文本水平和垂直居中。

这可以做到吗?

I am using JQuery. I have a div that contains a table. I have 4 rows in the table each with one col. Each row contains a line or two of text

I want to make each row with height = 100 px and have the text centered horizontally and vertically.

Can this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

娇妻 2024-10-04 14:28:48

如果您希望每个表格单元格中的文本垂直和水平对齐,可以使用 CSS。

table td {
    height: 100px;
    text-align: center;
    vertical-align: middle;
}

在这里查看它的工作原理。

If you want the text in each table cell aligned vertically and horizontally, you can use CSS.

table td {
    height: 100px;
    text-align: center;
    vertical-align: middle;
}

See it working here.

成熟的代价 2024-10-04 14:28:48

很简单:

text-align: center;
vertical-align: middle:

very simple:

text-align: center;
vertical-align: middle:
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文