虽然
而不是使用
.marquee { width: 450px; line-height: 50px; background-color: red; color: white; white-space: nowrap; overflow: hidden; box-sizing: border-box; } .marquee p { display: inline-block; padding-left: 100%; animation: marquee 15s linear infinite; } @keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
这种基于 CSS 的解决方案提供了可配置的滚动速度、文本方向(甚至从下到上)等,使其成为可靠的解决方案
以上是为什么 `` 标签已过时以及更好的替代方案是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!