0
Why is this marquee outside border ? Help plz
4 Réponses
+ 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
+ 1
wow thank you!!! i appreciate this tons 😇
+ 1



