Jump to content

User:4erospace/common.css: Difference between revisions

m CSS test
m CSS test
Line 8: Line 8:
   overflow: hidden;
   overflow: hidden;
   display: inline-block;
   display: inline-block;
   animation: marquee 10s linear infinite;
   animation: marquee 30s linear infinite;
}
}



Revision as of 06:26, 17 June 2025

.wrapper {
  max-width: 100%;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee p {
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}