gpt4 book ai didi

ff/opera 中带有 margin-left auto 的 css3 过渡

转载 作者:太空宇宙 更新时间:2023-11-03 19:07:52 25 4
gpt4 key购买 nike

我有一个 #header 元素,带有 margin: 0 auto。我添加了一个媒体查询:

@media screen and (max-width: 950px) {
#header {
-webkit-transition: all 0.6s ease-out;
-moz-transition: all 0.6s ease-out;
-o-transition: all 0.6s ease-out;
margin-left: 0;
}
}

-moz-o 忽略过渡属性:margin-left 立即设置为 0,而 -webkit 的行为符合预期。当使用数字而不是 auto 时,firefox 和 opera 会应用转换。

如何让 Mozilla 和 Opera 在使用 auto 的同时应用转换?

最佳答案

使用 -moz-transition: all 0.6s cubic-bezier(0, 0, 0.58, 1) 0s; 似乎可以在 Ubuntu 上的 Firefox 上运行。 (这就是 Opera 解释 ease-out 的方式。)在 Windows 上试试吧。

关于ff/opera 中带有 margin-left auto 的 css3 过渡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9536944/

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