gpt4 book ai didi

html - DIV 向左浮动而不是停留在表格的中央

转载 作者:行者123 更新时间:2023-11-28 08:12:48 28 4
gpt4 key购买 nike

我正在处理网页中的表格。该表在 td 标签中包含一个由 4 个框组成的网格。我在我的 CSS 样式表中为框使用了 3D 翻转过渡。我遇到的问题是,当我将 CSS 应用于列 (td) 中的 div 时,与中心对齐的图像向左移动。我尝试将 div 的 margin-left 然后 right 设置为 auto,但仍然没有。我会提供我的部分 HTML 和 CSS 以及问题的屏幕截图。请帮助解决这个问题 -

PS:出于某种原因,我试图粘贴我的 HTML 代码,但格式不正确。

Screenshot of the webpage

HTML: enter image description here --> --> 这是背面! --> --> 支付记录

CSS:

.flip-container {
perspective: 1000;
}
/* flip the pane when hovered */
.flip-container:hover .flipper, .flip-container.hover .flipper {
transform: rotateY(180deg);
}

.flip-container, .front, .back {
/**width: 320px;
height: 480px;**/
}

/* flip speed goes here */
.flipper {
transition: 0.6s;
transform-style: preserve-3d;

position: relative;
}

/* hide back of pane during swap */
.front, .back {
backface-visibility: hidden;

position: absolute;
top: 0;
left: 0;

}

/* front pane, placed above back */
.front {
z-index: 2;
/* for firefox 31 */
transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
transform: rotateY(180deg);
}

最佳答案

所以在图像父div中添加text-align center

像这样:

td{
text-align: center;
}

关于html - DIV 向左浮动而不是停留在表格的中央,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29164742/

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