雖然
而不是使用
.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中文網其他相關文章!