CSS FOR MARQUEE TEXT
Hi,
I wanted to make a label inside a panel to be marquee and moving to left. I wrote a simple css using keyframe rule but it doesn't work.
@keyframes marquee {
0% { left: 0; }
100% { left: -100%; }
}
.testLabel .widget-Label {
animation: marquee 5s linear infinite;
}
testLabel is my Label name.
How can I proceed?
Thanks,
Shalini V.
