Jump to content

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

m CSS test
m Tidying up
Tag: Blanking
Line 1: Line 1:
.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);
  }
}

Revision as of 06:28, 17 June 2025