gpt4 book ai didi

html - 为什么此 HTML 中的文本对齐不是动态的?

转载 作者:行者123 更新时间:2023-11-28 13:24:30 25 4
gpt4 key购买 nike

为什么文本对齐没有改变?这是我的 HTML。

<!DOCTYPE html>
<html>
<head>
<title>CSS 3 Animation</title>
<style>
.table
{
width: 400px;
height: 80px;
border: 1px dotted black;
}

.animatedMargin
{
font-size: xx-large;
-webkit-animation: marginAnimation 1s;
}

@-webkit-keyframes marginAnimation
{
from {text-align: left}
to {text-align: right}
}
</style>
</head>
<body>
<table class="table">
<tr>
<td class="animatedMargin">
SAMPLE TEXT
</td>
</tr>
</table>
</body>
</html>

我已经将 text-align 更改为 background 以查看它是否有效,并且确实如此。那么它与 text-align 有什么关系吗?

最佳答案

文本对齐不应该是 a transitionable property .

关于html - 为什么此 HTML 中的文本对齐不是动态的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14404304/

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