0
How to stop a marquee automatically at a specific position??
using marquee tag in HTML the included content moves as per the set directions. what CSS code may be used to stop the marquee at the specific position automatically??
1 ответ
+ 5
HTML:
<marquee behavior="slide" direction="right" loop="1">
a moving text
</marquee>
CSS:
marquee{
width: 80%;
}
//use the width to specify where it should stop in css.