Why is deprecated and what is the best alternative?
前端 未结 6 1222
借酒劲吻你
借酒劲吻你 2020-11-27 04:52

Longer time I\'m curious about HTML tag .

You can find in MDN specification:

Obsolete This feat

6条回答
  •  一向
    一向 (楼主)
    2020-11-27 05:17

    I don't think you should move the content but that doesn't answer your question... Take a look at the CSS:

    .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); }
    }
    

    Here is the codepen.

    Edit:

    Here is the bottom to top codepen.

提交回复
热议问题