@-webkit-keyframes ticker { 0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); visibility: visible; } 100% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } @keyframes ticker { 0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); visibility: visible; } 100% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } .ticker-wrap { width: 100%; overflow: hidden; padding-top: 5px; background-color: rgba(#000, 0.9); padding-left: 100%; // offset items to begin } .ticker-innen { display: inline-block; height: 1.5rem; line-height: 1.5rem; white-space: nowrap; // display items in a line padding-right: 100%; // ensure items go before animations repeat (taken from parent due to inline-block) -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-name: ticker; animation-name: ticker; -webkit-animation-duration: 30s; animation-duration: 30s; &__item { display: inline-block; padding: 0 2rem; font-size: 1.5rem; color: white; } }