User:4erospace/common.css: Difference between revisions
m CSS test |
m CSS test Tag: Reverted |
||
Line 1: | Line 1: | ||
.marquee { | .marquee { | ||
width: auto; | |||
margin: 0 auto; | margin: 0 auto; | ||
white-space: nowrap; | white-space: nowrap; |
Revision as of 06:09, 17 June 2025
.marquee {
width: auto;
margin: 0 auto;
white-space: nowrap;
overflow: hidden;
position: absolute;
}
.marquee span {
display: inline-block;
padding-left: 100%;
animation: marquee 40s linear infinite;
}
.marquee2 span {
animation-delay: 20s;
}
@keyframes marquee {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-100%, 0);
}
}