Why is this marquee outside border ? Help plz | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why is this marquee outside border ? Help plz

https://code.sololearn.com/WhWSkitHl9It/?ref=app

6th May 2020, 12:50 AM
María Corpeno
3 Answers
+ 1
María Corpeno change h2 tags to b tags however on your h2 CSS selector add b <style> h2, b { font-size: 20px; font-style: italic; color: #d4b694;" } </style> create a marquee with CSS including the various webkits below <style> #myMarquee { border: .05% solid #000000; background-color:#ff0; width: 200px; height: 17px; text-align: right; -webkit-marquee: up medium 2 normal scroll; -webkit-marquee-direction: forwards; -webkit-marquee-increment: 3px; -webkit-marquee-repetition: infinite; -webkit-marquee-speed: fast; -webkit-marquee-style: scroll; } </style> <marquee id="myMarquee"> <b>Thank you for voting! </b> </marquee> https://code.sololearn.com/W6eBsIcichcn/?ref=app
6th May 2020, 2:19 AM
BroFar
BroFar - avatar
+ 1
wow thank you!!! i appreciate this tons 😇
6th May 2020, 2:21 AM
María Corpeno
6th May 2020, 2:21 AM
María Corpeno