<section>
    <div>Привет! Я бегущая строка </div>
</section>

<style>
    section {
       display: flex;
       overflow-x: hidden;
    }

    div {
      font-size: 120px;
      animation: marquee 10s infinite linear;
      font-size: sans-serif;
      line-height: 1.3;
      padding: 24px 0;
      white-space: nowrap;
      display: inline-block;
    }

    div:after {
        content: 'Привет! Я бегущая строка ';
    }

   @keyframes marquee {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-50%);
        }
    }
</style>

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.